/****************************************************************
* This file is part of CLKR - www.fernuni-hagen.de/wbs/clkr/
* 
* File       : med0032_Malaria5.cl
* Type       : KB
* Domain     : Medical
* Date       : 2023-12-06
* Version    : v1.0
* 
* Details    : Signature size        : 5
*              #Conditionals per KB  : 5
* 
* Refs       : [Osi20] A. Osiak (2020). Anwendungsbeispiele aus dem biomedizinischen Bereich für die Verarbeitung unsicheren Wissens mit qualitativen Konditionalen, Bachelor Thesis, Univ. of Hagen, Germany.
*
* Comments   : h => humans infected with malaria pathogen, m => to get seriously sick with malaria, s => to have sickle cell anemia version of hemoglobin gene,
*			   p => to apply a chemoprophylaxis, r => malaria pathogen being resistant against the chemoprophylaxis
* 
****************************************************************/

signature
	h,m,s,p,r

conditionals
Malaria5{
	(!s|h),
	(m|!s),	
	(!m|s),	
	(!m|p),
	(m|p,r)
}