[jboss-svn-commits] JBL Code SVN: r19373 - in labs/jbossrules/contrib/machinelearning/dt_examples/src: rules/examples and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Apr 1 23:06:03 EDT 2008


Author: gizil
Date: 2008-04-01 23:06:01 -0400 (Tue, 01 Apr 2008)
New Revision: 19373

Added:
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/Abalone.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/AbaloneExample.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/Zoo.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/ZooExample.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/poker_hands.drl
   labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/zoo.drl
Modified:
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/CarExample.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/GolfExample.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/NurseryExample.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/PokerExample.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/RestaurantExample.java
   labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/cars.drl
   labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/golf.drl
   labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/nurseries.drl
   labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/restaurants.drl
Log:
all rules

Added: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/Abalone.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/Abalone.java	                        (rev 0)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/Abalone.java	2008-04-02 03:06:01 UTC (rev 19373)
@@ -0,0 +1,110 @@
+package examples;
+
+public class Abalone {
+	/*
+	Sex		nominal			M, F, and I (infant)
+	Length		continuous	mm	Longest shell measurement
+	Diameter	continuous	mm	perpendicular to length
+	Height		continuous	mm	with meat in shell
+	Whole weight	continuous	grams	whole abalone
+	Shucked weight	continuous	grams	weight of meat
+	Viscera weight	continuous	grams	gut weight (after bleeding)
+	Shell weight	continuous	grams	after being dried
+	Rings		integer			+1.5 gives the age in years
+	*/
+	
+	private String sex; 			//	nominal			M, F, and I (infant)
+	private double length;			//	continuous	mm	Longest shell measurement
+	private double diameter;		//	continuous	mm	perpendicular to length
+	private double height;			//	continuous	mm	with meat in shell
+	private double whole_weight;	//	continuous	grams	whole abalone
+	private double shucked_weight;	//	continuous	grams	weight of meat
+	private double viscera_weight;	//	continuous	grams	gut weight (after bleeding)
+	private double shell_weight;	//	continuous	grams	after being dried
+	private int rings;				//	integer			+1.5 gives the age in years
+
+	private int target;
+
+	public String getSex() {
+		return sex;
+	}
+
+	public void setSex(String sex) {
+		this.sex = sex;
+	}
+
+	public double getLength() {
+		return length;
+	}
+
+	public void setLength(double length) {
+		this.length = length;
+	}
+
+	public double getDiameter() {
+		return diameter;
+	}
+
+	public void setDiameter(double diameter) {
+		this.diameter = diameter;
+	}
+
+	public double getHeight() {
+		return height;
+	}
+
+	public void setHeight(double height) {
+		this.height = height;
+	}
+
+	public double getWhole_weight() {
+		return whole_weight;
+	}
+
+	public void setWhole_weight(double whole_weight) {
+		this.whole_weight = whole_weight;
+	}
+
+	public double getShucked_weight() {
+		return shucked_weight;
+	}
+
+	public void setShucked_weight(double shucked_weight) {
+		this.shucked_weight = shucked_weight;
+	}
+
+	public double getViscera_weight() {
+		return viscera_weight;
+	}
+
+	public void setViscera_weight(double viscera_weight) {
+		this.viscera_weight = viscera_weight;
+	}
+
+	public double getShell_weight() {
+		return shell_weight;
+	}
+
+	public void setShell_weight(double shell_weight) {
+		this.shell_weight = shell_weight;
+	}
+
+	public int getRings() {
+		return rings;
+	}
+
+	public void setRings(int rings) {
+		this.rings = rings;
+	}
+
+	public int getTarget() {
+		return target;
+	}
+
+	public void setTarget(int target) {
+		this.target = target;
+	}
+	
+	
+	
+}

Added: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/AbaloneExample.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/AbaloneExample.java	                        (rev 0)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/AbaloneExample.java	2008-04-02 03:06:01 UTC (rev 19373)
@@ -0,0 +1,5 @@
+package examples;
+
+public class AbaloneExample {
+
+}

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/CarExample.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/CarExample.java	2008-04-02 01:29:16 UTC (rev 19372)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/CarExample.java	2008-04-02 03:06:01 UTC (rev 19373)
@@ -41,7 +41,7 @@
 
 		/* create the drl */
 		List<Object> my_objects = FileProcessor.processFileExmID3(simple,
-				car, drlFile, "../data/car/car.data.txt", ",");
+				car, drlFile, "data/car/car.data.txt", ",");
 
 		/* parse the drl */
 		//read in the source 

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/GolfExample.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/GolfExample.java	2008-04-02 01:29:16 UTC (rev 19372)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/GolfExample.java	2008-04-02 03:06:01 UTC (rev 19373)
@@ -25,11 +25,11 @@
 		WorkingMemory simple = new WorkingMemory();
 		/* create the drl */
 		Object golf = new Golf();
-		//List<Object> my_objects = FileProcessor.processFileExmC45(simple,golf, drlFile, "../data/golf/golf.data.txt", ",");
-		List<Object> my_objects = FileProcessor.processFileExmC45(simple,golf, drlFile, "../data/golf/golf.data.txt", ",");
+		
+		List<Object> my_objects = FileProcessor.processFileExmC45(simple,golf, drlFile, "data/golf/golf.data.txt", ",");
 
 		/* parse the drl */
-		boolean parse_w_drools = false;
+		boolean parse_w_drools = true;
 		if (parse_w_drools) {
 		//read in the source 
 		// TODO give an exception of the file does not exist
@@ -53,7 +53,7 @@
 		final RuleBase ruleBase = RuleBaseFactory.newRuleBase();
 		ruleBase.addPackage(pkg);
 
-		boolean load_to_drools = false;
+		boolean load_to_drools = true;
 		if (load_to_drools) {
 			/* feeding the object to Drools working memory */
 			final StatefulSession session = ruleBase.newStatefulSession();

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/NurseryExample.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/NurseryExample.java	2008-04-02 01:29:16 UTC (rev 19372)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/NurseryExample.java	2008-04-02 03:06:01 UTC (rev 19373)
@@ -27,7 +27,7 @@
 		/* create the drl */
 		Object nurse = new Nursery();
 		List<Object> my_objects = FileProcessor.processFileExmID3(simple,
-				nurse, drlFile, "../data/nursery/nursery.data.txt", ",");
+				nurse, drlFile, "data/nursery/nursery.data.txt", ",");
 
 		/* parse the drl */
 		//read in the source 

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/PokerExample.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/PokerExample.java	2008-04-02 01:29:16 UTC (rev 19372)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/PokerExample.java	2008-04-02 03:06:01 UTC (rev 19373)
@@ -28,10 +28,10 @@
 		Object nurse = new Poker();
 		
 		List<Object> my_objects = FileProcessor.processFileExmC45(simple,
-				nurse, drlFile, "../data/poker/poker-hand-training-true.data.txt", ",");
+				nurse, drlFile, "data/poker/poker-hand-training-true.data.txt", ",");
 
 		/* parse the drl */
-		boolean parse_w_drools = false;
+		boolean parse_w_drools = true;
 		if (parse_w_drools) {
 		//read in the source 
 		// TODO give an exception of the file does not exist

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/RestaurantExample.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/RestaurantExample.java	2008-04-02 01:29:16 UTC (rev 19372)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/RestaurantExample.java	2008-04-02 03:06:01 UTC (rev 19373)
@@ -139,7 +139,7 @@
 		dt = System.currentTimeMillis() - dt;
 		System.out.println("Time" + dt + "\n" + bocuksTree);
 
-		RulePrinter my_printer = new RulePrinter();
+		RulePrinter my_printer = new RulePrinter(bocuk.getNum_fact_processed());
 		boolean sort_via_rank = true;
 		my_printer
 				.printer(bocuksTree, "examples", "src/rules/examples/" + file, sort_via_rank);

Added: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/Zoo.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/Zoo.java	                        (rev 0)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/Zoo.java	2008-04-02 03:06:01 UTC (rev 19373)
@@ -0,0 +1,173 @@
+package examples;
+
+import dt.memory.DomainSpec;
+
+public class Zoo {
+	/*
+	   1. animal name:      Unique for each instance
+	   2. hair		Boolean
+	   3. feathers		Boolean
+	   4. eggs		Boolean
+	   5. milk		Boolean
+	   6. airborne		Boolean
+	   7. aquatic		Boolean
+	   8. predator		Boolean
+	   9. toothed		Boolean
+	  10. backbone		Boolean
+	  11. breathes		Boolean
+	  12. venomous		Boolean
+	  13. fins		Boolean
+	  14. legs		Numeric (set of values: {0,2,4,5,6,8})
+	  15. tail		Boolean
+	  16. domestic		Boolean
+	  17. catsize		Boolean
+	  18. type		Numeric (integer values in range [1,7])
+	  */
+	@DomainSpec(readingSeq = 0, ignore= true)
+	private String animal_name;	//      Unique for each instance
+	@DomainSpec(readingSeq = 1)
+	private boolean hair;		//		Boolean
+	@DomainSpec(readingSeq = 2)
+	private boolean feathers;	//		Boolean
+	@DomainSpec(readingSeq = 3)
+	private boolean eggs;		//		Boolean
+	@DomainSpec(readingSeq = 4)
+	private boolean milk;		//		Boolean
+	@DomainSpec(readingSeq = 5)
+	private boolean airborne; 	//		Boolean
+	@DomainSpec(readingSeq = 6)
+	private boolean aquatic;	//		Boolean
+	@DomainSpec(readingSeq = 7)
+	private boolean predator;	//		Boolean
+	@DomainSpec(readingSeq = 8)
+	private boolean toothed;	//		Boolean
+	@DomainSpec(readingSeq = 9)
+	private boolean backbone;	//		Boolean
+	@DomainSpec(readingSeq = 10)
+	private boolean breathes;	//		Boolean
+	@DomainSpec(readingSeq = 11)
+	private boolean venomous;	//		Boolean
+	@DomainSpec(readingSeq = 12)
+	private boolean fins;		//		Boolean
+	@DomainSpec(readingSeq = 13, discrete = false, values = {"0","2","4","5","6","8"})
+	private int legs;			//		Numeric (set of values: {0,2,4,5,6,8})
+	@DomainSpec(readingSeq = 14)
+	private boolean tail;		//		Boolean
+	@DomainSpec(readingSeq = 15)
+	private boolean domestic;	//		Boolean
+	@DomainSpec(readingSeq = 16)
+	private boolean vcatsize;	//		Boolean
+	@DomainSpec(readingSeq = 17, target = true)
+	private int type;			//		Numeric (integer values in range [1,7])
+	
+	public String getAnimal_name() {
+		return animal_name;
+	}
+	public void setAnimal_name(String animal_name) {
+		this.animal_name = animal_name;
+	}
+	public boolean isHair() {
+		return hair;
+	}
+	public void setHair(boolean hair) {
+		this.hair = hair;
+	}
+	public boolean isFeathers() {
+		return feathers;
+	}
+	public void setFeathers(boolean feathers) {
+		this.feathers = feathers;
+	}
+	public boolean isEggs() {
+		return eggs;
+	}
+	public void setEggs(boolean eggs) {
+		this.eggs = eggs;
+	}
+	public boolean isMilk() {
+		return milk;
+	}
+	public void setMilk(boolean milk) {
+		this.milk = milk;
+	}
+	public boolean isAirborne() {
+		return airborne;
+	}
+	public void setAirborne(boolean airborne) {
+		this.airborne = airborne;
+	}
+	public boolean isAquatic() {
+		return aquatic;
+	}
+	public void setAquatic(boolean aquatic) {
+		this.aquatic = aquatic;
+	}
+	public boolean isPredator() {
+		return predator;
+	}
+	public void setPredator(boolean predator) {
+		this.predator = predator;
+	}
+	public boolean isToothed() {
+		return toothed;
+	}
+	public void setToothed(boolean toothed) {
+		this.toothed = toothed;
+	}
+	public boolean isBackbone() {
+		return backbone;
+	}
+	public void setBackbone(boolean backbone) {
+		this.backbone = backbone;
+	}
+	public boolean isBreathes() {
+		return breathes;
+	}
+	public void setBreathes(boolean breathes) {
+		this.breathes = breathes;
+	}
+	public boolean isVenomous() {
+		return venomous;
+	}
+	public void setVenomous(boolean venomous) {
+		this.venomous = venomous;
+	}
+	public boolean isFins() {
+		return fins;
+	}
+	public void setFins(boolean fins) {
+		this.fins = fins;
+	}
+	public int getLegs() {
+		return legs;
+	}
+	public void setLegs(int legs) {
+		this.legs = legs;
+	}
+	public boolean isTail() {
+		return tail;
+	}
+	public void setTail(boolean tail) {
+		this.tail = tail;
+	}
+	public boolean isDomestic() {
+		return domestic;
+	}
+	public void setDomestic(boolean domestic) {
+		this.domestic = domestic;
+	}
+	public boolean isVcatsize() {
+		return vcatsize;
+	}
+	public void setVcatsize(boolean vcatsize) {
+		this.vcatsize = vcatsize;
+	}
+	public int getType() {
+		return type;
+	}
+	public void setType(int type) {
+		this.type = type;
+	}
+
+
+}

Added: labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/ZooExample.java
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/ZooExample.java	                        (rev 0)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/java/examples/ZooExample.java	2008-04-02 03:06:01 UTC (rev 19373)
@@ -0,0 +1,97 @@
+package examples;
+
+import java.io.InputStreamReader;
+import java.io.Reader;
+import java.util.Iterator;
+import java.util.List;
+
+import org.drools.RuleBase;
+import org.drools.RuleBaseFactory;
+import org.drools.StatefulSession;
+import org.drools.audit.WorkingMemoryFileLogger;
+import org.drools.compiler.PackageBuilder;
+import org.drools.event.DebugAgendaEventListener;
+import org.drools.event.DebugWorkingMemoryEventListener;
+import org.drools.rule.Package;
+
+import dt.memory.WorkingMemory;
+import dt.tools.FileProcessor;
+
+public class ZooExample {
+	public static final void main(final String[] args) throws Exception {
+
+		String drlFile = new String("zoo" + ".drl");
+		WorkingMemory simple = new WorkingMemory();
+		/* create the drl */
+		Object animal = new Zoo();
+		
+		List<Object> my_objects = FileProcessor.processFileExmC45(simple,animal, drlFile, "data/zoo/zoo.data", ",");
+
+		/* parse the drl */
+		boolean parse_w_drools = false;
+		if (parse_w_drools) {
+		//read in the source 
+		// TODO give an exception of the file does not exist
+		final Reader source = new InputStreamReader(Zoo.class
+				.getResourceAsStream(drlFile));
+
+		final PackageBuilder builder = new PackageBuilder();
+
+		//this will parse and compile in one step
+		builder.addPackageFromDrl(source);
+
+		// Check the builder for errors
+		if (builder.hasErrors()) {
+			System.out.println(builder.getErrors().toString());
+			throw new RuntimeException("Unable to compile \"" + drlFile + "\".");
+		}
+		//get the compiled package (which is serializable)
+		final Package pkg = builder.getPackage();
+
+		//add the package to a rulebase (deploy the rule package).
+		final RuleBase ruleBase = RuleBaseFactory.newRuleBase();
+		ruleBase.addPackage(pkg);
+
+		boolean load_to_drools = false;
+		if (load_to_drools) {
+			/* feeding the object to Drools working memory */
+			final StatefulSession session = ruleBase.newStatefulSession();
+			session.addEventListener(new DebugAgendaEventListener());
+			session.addEventListener(new DebugWorkingMemoryEventListener());
+
+			final WorkingMemoryFileLogger logger = new WorkingMemoryFileLogger(
+					session);
+			logger.setFileName("log/golf");
+
+			Iterator<Object> it_obj = my_objects.iterator();
+			while (it_obj.hasNext()) {
+				Object obj = it_obj.next();
+
+				//System.out.println("Object " + obj);
+
+				try {
+					session.insert(obj);
+
+				} catch (Exception e) {
+					System.out
+							.println("Inserting element " + obj + " and " + e);
+				}
+			}
+
+			session.fireAllRules();
+
+			//        Iterator<Object> my_it = session.iterateObjects();
+			//        
+			//        while(my_it.hasNext()) {
+			//        	Object o = my_it.next();
+			//        	//System.out.println("Object " + o);
+			//        }
+			logger.writeToDisk();
+
+			session.dispose();
+		}
+		}
+		System.out.println("Happy ending");
+
+	}
+}

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/cars.drl
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/cars.drl	2008-04-02 01:29:16 UTC (rev 19372)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/cars.drl	2008-04-02 03:06:01 UTC (rev 19373)
@@ -1,2074 +1,2076 @@
 package examples;
 
-rule "#3 target = good with rank:5.787037037037037E-4" 
+rule "#0 target = unacc classifying 576.0 num of facts with rank:0.3333333333333333" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "low", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#4 target = good with rank:5.787037037037037E-4" 
+rule "#157 target = unacc classifying 192.0 num of facts with rank:0.1111111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#5 target = acc with rank:5.787037037037037E-4" 
+rule "#295 target = unacc classifying 192.0 num of facts with rank:0.1111111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#6 target = acc with rank:5.787037037037037E-4" 
+rule "#57 target = unacc classifying 16.0 num of facts with rank:0.009259259259259259" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#9 target = acc with rank:5.787037037037037E-4" 
+rule "#143 target = unacc classifying 16.0 num of facts with rank:0.009259259259259259" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#10 target = acc with rank:5.787037037037037E-4" 
+rule "#19 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "high", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#11 target = unacc with rank:5.787037037037037E-4" 
+rule "#26 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "vhigh", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#12 target = unacc with rank:5.787037037037037E-4" 
+rule "#33 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "high", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#15 target = good with rank:5.787037037037037E-4" 
+rule "#46 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "med", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#16 target = good with rank:5.787037037037037E-4" 
+rule "#104 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#17 target = acc with rank:5.787037037037037E-4" 
+rule "#111 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "high", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#18 target = acc with rank:5.787037037037037E-4" 
+rule "#164 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "vhigh", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#22 target = acc with rank:5.787037037037037E-4" 
+rule "#177 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "vhigh", maint == "low", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#23 target = acc with rank:5.787037037037037E-4" 
+rule "#178 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "vhigh", maint == "vhigh", target : target)
 	 then 
+		 System.out.println("Decision on target = "+target +": (unacc)");
+end
+
+rule "#179 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
+	 when
+		 examples.Car(safety == "high", persons == "4", buying == "vhigh", maint == "med", target : target)
+	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#24 target = unacc with rank:5.787037037037037E-4" 
+rule "#180 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "vhigh", maint == "high", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#25 target = unacc with rank:5.787037037037037E-4" 
+rule "#187 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#29 target = acc with rank:5.787037037037037E-4" 
+rule "#194 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "high", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#30 target = acc with rank:5.787037037037037E-4" 
+rule "#195 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "high", maint == "low", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#31 target = unacc with rank:5.787037037037037E-4" 
+rule "#196 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "high", maint == "vhigh", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#32 target = unacc with rank:5.787037037037037E-4" 
+rule "#197 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "high", maint == "med", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#36 target = good with rank:5.787037037037037E-4" 
+rule "#198 target = acc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "high", maint == "high", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#37 target = good with rank:5.787037037037037E-4" 
+rule "#238 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#38 target = acc with rank:5.787037037037037E-4" 
+rule "#245 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "high", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#39 target = acc with rank:5.787037037037037E-4" 
+rule "#282 target = unacc classifying 12.0 num of facts with rank:0.006944444444444444" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#42 target = acc with rank:5.787037037037037E-4" 
+rule "#1 target = good classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#43 target = acc with rank:5.787037037037037E-4" 
+rule "#2 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#44 target = unacc with rank:5.787037037037037E-4" 
+rule "#7 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#45 target = unacc with rank:5.787037037037037E-4" 
+rule "#8 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#49 target = acc with rank:5.787037037037037E-4" 
+rule "#13 target = good classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#50 target = acc with rank:5.787037037037037E-4" 
+rule "#14 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#51 target = unacc with rank:5.787037037037037E-4" 
+rule "#20 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#52 target = unacc with rank:5.787037037037037E-4" 
+rule "#21 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#58 target = acc with rank:5.787037037037037E-4" 
+rule "#27 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "4", maint == "low", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#59 target = unacc with rank:5.787037037037037E-4" 
+rule "#28 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "4", maint == "vhigh", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#60 target = acc with rank:5.787037037037037E-4" 
+rule "#34 target = good classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "4", maint == "med", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#61 target = acc with rank:5.787037037037037E-4" 
+rule "#35 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "4", maint == "high", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#62 target = acc with rank:5.787037037037037E-4" 
+rule "#40 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "5more", maint == "low", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#63 target = unacc with rank:5.787037037037037E-4" 
+rule "#41 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "5more", maint == "vhigh", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#64 target = acc with rank:5.787037037037037E-4" 
+rule "#47 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "5more", maint == "med", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#65 target = acc with rank:5.787037037037037E-4" 
+rule "#48 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "5more", maint == "high", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#69 target = acc with rank:5.787037037037037E-4" 
+rule "#53 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "big", maint == "low", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#70 target = acc with rank:5.787037037037037E-4" 
+rule "#54 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "big", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#71 target = acc with rank:5.787037037037037E-4" 
+rule "#55 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "big", maint == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#72 target = unacc with rank:5.787037037037037E-4" 
+rule "#56 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "big", maint == "high", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#73 target = good with rank:5.787037037037037E-4" 
+rule "#66 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#74 target = good with rank:5.787037037037037E-4" 
+rule "#67 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#75 target = good with rank:5.787037037037037E-4" 
+rule "#68 target = good classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#76 target = acc with rank:5.787037037037037E-4" 
+rule "#77 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#79 target = acc with rank:5.787037037037037E-4" 
+rule "#78 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#80 target = acc with rank:5.787037037037037E-4" 
+rule "#83 target = good classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#81 target = acc with rank:5.787037037037037E-4" 
+rule "#98 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#82 target = unacc with rank:5.787037037037037E-4" 
+rule "#99 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#84 target = acc with rank:5.787037037037037E-4" 
+rule "#105 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#85 target = acc with rank:5.787037037037037E-4" 
+rule "#106 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#86 target = acc with rank:5.787037037037037E-4" 
+rule "#112 target = good classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "big", target : target)
 	 then 
+		 System.out.println("Decision on target = "+target +": (good)");
+end
+
+rule "#121 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
+	 when
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "big", target : target)
+	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#87 target = unacc with rank:5.787037037037037E-4" 
+rule "#122 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#88 target = good with rank:5.787037037037037E-4" 
+rule "#133 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#89 target = good with rank:5.787037037037037E-4" 
+rule "#134 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#90 target = good with rank:5.787037037037037E-4" 
+rule "#139 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "big", maint == "low", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#91 target = acc with rank:5.787037037037037E-4" 
+rule "#140 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "big", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#95 target = acc with rank:5.787037037037037E-4" 
+rule "#141 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "2", lug_boot == "big", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "big", maint == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#96 target = unacc with rank:5.787037037037037E-4" 
+rule "#142 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "big", maint == "high", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#97 target = acc with rank:5.787037037037037E-4" 
+rule "#156 target = unacc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#100 target = acc with rank:5.787037037037037E-4" 
+rule "#158 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#101 target = acc with rank:5.787037037037037E-4" 
+rule "#159 target = good classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#102 target = acc with rank:5.787037037037037E-4" 
+rule "#165 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#103 target = unacc with rank:5.787037037037037E-4" 
+rule "#166 target = good classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#107 target = acc with rank:5.787037037037037E-4" 
+rule "#171 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#108 target = acc with rank:5.787037037037037E-4" 
+rule "#172 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#109 target = acc with rank:5.787037037037037E-4" 
+rule "#181 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#110 target = unacc with rank:5.787037037037037E-4" 
+rule "#182 target = good classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#113 target = acc with rank:5.787037037037037E-4" 
+rule "#188 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#114 target = acc with rank:5.787037037037037E-4" 
+rule "#189 target = acc classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#115 target = acc with rank:5.787037037037037E-4" 
+rule "#199 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#116 target = unacc with rank:5.787037037037037E-4" 
+rule "#214 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#117 target = good with rank:5.787037037037037E-4" 
+rule "#223 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#118 target = good with rank:5.787037037037037E-4" 
+rule "#246 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#119 target = good with rank:5.787037037037037E-4" 
+rule "#261 target = vgood classifying 4.0 num of facts with rank:0.0023148148148148147" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#120 target = acc with rank:5.787037037037037E-4" 
+rule "#92 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#123 target = acc with rank:5.787037037037037E-4" 
+rule "#93 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#124 target = acc with rank:5.787037037037037E-4" 
+rule "#94 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#125 target = acc with rank:5.787037037037037E-4" 
+rule "#127 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#126 target = unacc with rank:5.787037037037037E-4" 
+rule "#128 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#130 target = acc with rank:5.787037037037037E-4" 
+rule "#129 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "2", lug_boot == "big", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#131 target = unacc with rank:5.787037037037037E-4" 
+rule "#208 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#132 target = acc with rank:5.787037037037037E-4" 
+rule "#209 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#135 target = acc with rank:5.787037037037037E-4" 
+rule "#210 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#136 target = acc with rank:5.787037037037037E-4" 
+rule "#232 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#137 target = acc with rank:5.787037037037037E-4" 
+rule "#233 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#138 target = unacc with rank:5.787037037037037E-4" 
+rule "#234 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#144 target = acc with rank:5.787037037037037E-4" 
+rule "#239 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "4", maint == "low", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#145 target = unacc with rank:5.787037037037037E-4" 
+rule "#240 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "4", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#146 target = acc with rank:5.787037037037037E-4" 
+rule "#241 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "4", maint == "med", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#147 target = acc with rank:5.787037037037037E-4" 
+rule "#255 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "4", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#148 target = acc with rank:5.787037037037037E-4" 
+rule "#256 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "5more", maint == "low", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#149 target = unacc with rank:5.787037037037037E-4" 
+rule "#257 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "5more", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#150 target = acc with rank:5.787037037037037E-4" 
+rule "#270 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "5more", maint == "med", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#151 target = acc with rank:5.787037037037037E-4" 
+rule "#271 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "5more", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#152 target = acc with rank:5.787037037037037E-4" 
+rule "#272 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "3", maint == "low", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#153 target = unacc with rank:5.787037037037037E-4" 
+rule "#276 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "3", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#154 target = acc with rank:5.787037037037037E-4" 
+rule "#277 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "3", maint == "med", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#155 target = acc with rank:5.787037037037037E-4" 
+rule "#278 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "3", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#160 target = vgood with rank:5.787037037037037E-4" 
+rule "#283 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#161 target = vgood with rank:5.787037037037037E-4" 
+rule "#284 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#162 target = good with rank:5.787037037037037E-4" 
+rule "#285 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#163 target = good with rank:5.787037037037037E-4" 
+rule "#289 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#167 target = vgood with rank:5.787037037037037E-4" 
+rule "#290 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#168 target = vgood with rank:5.787037037037037E-4" 
+rule "#291 target = acc classifying 3.0 num of facts with rank:0.001736111111111111" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#169 target = good with rank:5.787037037037037E-4" 
+rule "#3 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#170 target = good with rank:5.787037037037037E-4" 
+rule "#4 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#173 target = vgood with rank:5.787037037037037E-4" 
+rule "#5 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#174 target = vgood with rank:5.787037037037037E-4" 
+rule "#6 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#175 target = acc with rank:5.787037037037037E-4" 
+rule "#9 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#176 target = acc with rank:5.787037037037037E-4" 
+rule "#10 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "med", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#183 target = vgood with rank:5.787037037037037E-4" 
+rule "#11 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#184 target = vgood with rank:5.787037037037037E-4" 
+rule "#12 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#185 target = good with rank:5.787037037037037E-4" 
+rule "#15 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#186 target = good with rank:5.787037037037037E-4" 
+rule "#16 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#190 target = vgood with rank:5.787037037037037E-4" 
+rule "#17 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#191 target = vgood with rank:5.787037037037037E-4" 
+rule "#18 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#192 target = acc with rank:5.787037037037037E-4" 
+rule "#22 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#193 target = acc with rank:5.787037037037037E-4" 
+rule "#23 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "med", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#200 target = good with rank:5.787037037037037E-4" 
+rule "#24 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#201 target = good with rank:5.787037037037037E-4" 
+rule "#25 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
-end
-
-rule "#202 target = good with rank:5.787037037037037E-4" 
-	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "3", target : target)
-	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
-end
-
-rule "#203 target = unacc with rank:5.787037037037037E-4" 
-	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "2", target : target)
-	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#204 target = vgood with rank:5.787037037037037E-4" 
+rule "#29 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#205 target = vgood with rank:5.787037037037037E-4" 
+rule "#30 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
-end
-
-rule "#206 target = vgood with rank:5.787037037037037E-4" 
-	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "3", target : target)
-	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
-end
-
-rule "#207 target = good with rank:5.787037037037037E-4" 
-	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "2", target : target)
-	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
-end
-
-rule "#211 target = acc with rank:5.787037037037037E-4" 
-	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "2", lug_boot == "big", target : target)
-	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#212 target = unacc with rank:5.787037037037037E-4" 
+rule "#31 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#213 target = acc with rank:5.787037037037037E-4" 
+rule "#32 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#215 target = good with rank:5.787037037037037E-4" 
+rule "#36 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#216 target = good with rank:5.787037037037037E-4" 
+rule "#37 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#217 target = good with rank:5.787037037037037E-4" 
+rule "#38 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#218 target = unacc with rank:5.787037037037037E-4" 
+rule "#39 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#219 target = vgood with rank:5.787037037037037E-4" 
+rule "#42 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#220 target = vgood with rank:5.787037037037037E-4" 
+rule "#43 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#221 target = vgood with rank:5.787037037037037E-4" 
+rule "#44 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#222 target = good with rank:5.787037037037037E-4" 
+rule "#45 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#224 target = acc with rank:5.787037037037037E-4" 
+rule "#49 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "small", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#225 target = acc with rank:5.787037037037037E-4" 
+rule "#50 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "small", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "med", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#226 target = acc with rank:5.787037037037037E-4" 
+rule "#51 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "small", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#227 target = unacc with rank:5.787037037037037E-4" 
+rule "#52 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "small", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "med", doors == "2", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#228 target = vgood with rank:5.787037037037037E-4" 
+rule "#58 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "4", maint == "low", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#229 target = vgood with rank:5.787037037037037E-4" 
+rule "#59 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "4", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#230 target = vgood with rank:5.787037037037037E-4" 
+rule "#60 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "4", maint == "med", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#231 target = acc with rank:5.787037037037037E-4" 
+rule "#61 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "4", maint == "high", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#235 target = acc with rank:5.787037037037037E-4" 
+rule "#62 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "2", lug_boot == "big", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "5more", maint == "low", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#236 target = unacc with rank:5.787037037037037E-4" 
+rule "#63 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "5more", maint == "vhigh", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#237 target = acc with rank:5.787037037037037E-4" 
+rule "#64 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "5more", maint == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#242 target = acc with rank:5.787037037037037E-4" 
+rule "#65 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "2", lug_boot == "big", target : target)
+		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "5more", maint == "high", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#243 target = unacc with rank:5.787037037037037E-4" 
+rule "#69 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#244 target = acc with rank:5.787037037037037E-4" 
+rule "#70 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#247 target = good with rank:5.787037037037037E-4" 
+rule "#71 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#248 target = good with rank:5.787037037037037E-4" 
+rule "#72 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#249 target = good with rank:5.787037037037037E-4" 
+rule "#73 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#250 target = unacc with rank:5.787037037037037E-4" 
+rule "#74 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#251 target = vgood with rank:5.787037037037037E-4" 
+rule "#75 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#252 target = vgood with rank:5.787037037037037E-4" 
+rule "#76 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#253 target = vgood with rank:5.787037037037037E-4" 
+rule "#79 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#254 target = good with rank:5.787037037037037E-4" 
+rule "#80 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#258 target = acc with rank:5.787037037037037E-4" 
+rule "#81 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "2", lug_boot == "big", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#259 target = unacc with rank:5.787037037037037E-4" 
+rule "#82 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "med", doors == "2", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#260 target = acc with rank:5.787037037037037E-4" 
+rule "#84 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#262 target = acc with rank:5.787037037037037E-4" 
+rule "#85 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "small", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#263 target = acc with rank:5.787037037037037E-4" 
+rule "#86 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "small", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#264 target = acc with rank:5.787037037037037E-4" 
+rule "#87 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "small", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
-end
-
-rule "#265 target = unacc with rank:5.787037037037037E-4" 
-	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "small", doors == "2", target : target)
-	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#266 target = vgood with rank:5.787037037037037E-4" 
+rule "#88 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#267 target = vgood with rank:5.787037037037037E-4" 
+rule "#89 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#268 target = vgood with rank:5.787037037037037E-4" 
+rule "#90 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#269 target = acc with rank:5.787037037037037E-4" 
+rule "#91 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "2", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#273 target = acc with rank:5.787037037037037E-4" 
+rule "#95 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "2", lug_boot == "big", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "2", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#274 target = unacc with rank:5.787037037037037E-4" 
+rule "#96 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "2", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#275 target = acc with rank:5.787037037037037E-4" 
+rule "#97 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "2", lug_boot == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#279 target = acc with rank:5.787037037037037E-4" 
+rule "#100 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "2", lug_boot == "big", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#280 target = unacc with rank:5.787037037037037E-4" 
+rule "#101 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#281 target = acc with rank:5.787037037037037E-4" 
+rule "#102 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#286 target = acc with rank:5.787037037037037E-4" 
+rule "#103 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "2", lug_boot == "big", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#287 target = unacc with rank:5.787037037037037E-4" 
+rule "#107 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#288 target = acc with rank:5.787037037037037E-4" 
+rule "#108 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "med", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#292 target = acc with rank:5.787037037037037E-4" 
+rule "#109 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "2", lug_boot == "big", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#293 target = unacc with rank:5.787037037037037E-4" 
+rule "#110 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "2", lug_boot == "small", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "med", doors == "2", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#294 target = acc with rank:5.787037037037037E-4" 
+rule "#113 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "2", lug_boot == "med", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#92 target = acc with rank:0.001736111111111111" 
+rule "#114 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#93 target = acc with rank:0.001736111111111111" 
+rule "#115 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#94 target = acc with rank:0.001736111111111111" 
+rule "#116 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "high", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#127 target = acc with rank:0.001736111111111111" 
+rule "#117 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#128 target = acc with rank:0.001736111111111111" 
+rule "#118 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#129 target = acc with rank:0.001736111111111111" 
+rule "#119 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#208 target = acc with rank:0.001736111111111111" 
+rule "#120 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#209 target = acc with rank:0.001736111111111111" 
+rule "#123 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#210 target = acc with rank:0.001736111111111111" 
+rule "#124 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "med", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#232 target = acc with rank:0.001736111111111111" 
+rule "#125 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#233 target = acc with rank:0.001736111111111111" 
+rule "#126 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#234 target = acc with rank:0.001736111111111111" 
+rule "#130 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "2", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#239 target = acc with rank:0.001736111111111111" 
+rule "#131 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "2", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#240 target = acc with rank:0.001736111111111111" 
+rule "#132 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "med", doors == "2", lug_boot == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#241 target = acc with rank:0.001736111111111111" 
+rule "#135 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#255 target = acc with rank:0.001736111111111111" 
+rule "#136 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "med", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#256 target = acc with rank:0.001736111111111111" 
+rule "#137 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#257 target = acc with rank:0.001736111111111111" 
+rule "#138 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#270 target = acc with rank:0.001736111111111111" 
+rule "#144 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "4", maint == "low", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#271 target = acc with rank:0.001736111111111111" 
+rule "#145 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "4", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#272 target = acc with rank:0.001736111111111111" 
+rule "#146 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "4", maint == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#276 target = acc with rank:0.001736111111111111" 
+rule "#147 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "4", maint == "high", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#277 target = acc with rank:0.001736111111111111" 
+rule "#148 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "5more", maint == "low", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#278 target = acc with rank:0.001736111111111111" 
+rule "#149 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "5more", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#283 target = acc with rank:0.001736111111111111" 
+rule "#150 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "5more", maint == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#284 target = acc with rank:0.001736111111111111" 
+rule "#151 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "5more", maint == "high", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#285 target = acc with rank:0.001736111111111111" 
+rule "#152 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "3", maint == "low", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#289 target = acc with rank:0.001736111111111111" 
+rule "#153 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "4", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "3", maint == "vhigh", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#290 target = acc with rank:0.001736111111111111" 
+rule "#154 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "5more", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "3", maint == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#291 target = acc with rank:0.001736111111111111" 
+rule "#155 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "3", target : target)
+		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "3", maint == "high", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#1 target = good with rank:0.0023148148148148147" 
+rule "#160 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
+		 System.out.println("Decision on target = "+target +": (vgood)");
+end
+
+rule "#161 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
+	 when
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "5more", target : target)
+	 then 
+		 System.out.println("Decision on target = "+target +": (vgood)");
+end
+
+rule "#162 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
+	 when
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "3", target : target)
+	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#2 target = acc with rank:0.0023148148148148147" 
+rule "#163 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "low", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#7 target = acc with rank:0.0023148148148148147" 
+rule "#167 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#8 target = unacc with rank:0.0023148148148148147" 
+rule "#168 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "vhigh", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#13 target = good with rank:0.0023148148148148147" 
+rule "#169 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#14 target = acc with rank:0.0023148148148148147" 
+rule "#170 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "med", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#20 target = acc with rank:0.0023148148148148147" 
+rule "#173 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#21 target = unacc with rank:0.0023148148148148147" 
+rule "#174 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "low", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#27 target = acc with rank:0.0023148148148148147" 
+rule "#175 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#28 target = unacc with rank:0.0023148148148148147" 
+rule "#176 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "med", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#34 target = good with rank:0.0023148148148148147" 
+rule "#183 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#35 target = acc with rank:0.0023148148148148147" 
+rule "#184 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "low", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#40 target = acc with rank:0.0023148148148148147" 
+rule "#185 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#41 target = unacc with rank:0.0023148148148148147" 
+rule "#186 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "vhigh", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#47 target = acc with rank:0.0023148148148148147" 
+rule "#190 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#48 target = unacc with rank:0.0023148148148148147" 
+rule "#191 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "high", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#53 target = acc with rank:0.0023148148148148147" 
+rule "#192 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "big", maint == "low", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#54 target = unacc with rank:0.0023148148148148147" 
+rule "#193 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "big", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#55 target = acc with rank:0.0023148148148148147" 
+rule "#200 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "big", maint == "med", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#56 target = acc with rank:0.0023148148148148147" 
+rule "#201 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "big", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#66 target = unacc with rank:0.0023148148148148147" 
+rule "#202 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "3", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#67 target = unacc with rank:0.0023148148148148147" 
+rule "#203 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "small", doors == "2", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#68 target = good with rank:0.0023148148148148147" 
+rule "#204 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#77 target = acc with rank:0.0023148148148148147" 
+rule "#205 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#78 target = unacc with rank:0.0023148148148148147" 
+rule "#206 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "vhigh", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#83 target = good with rank:0.0023148148148148147" 
+rule "#207 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "low", maint == "med", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#98 target = acc with rank:0.0023148148148148147" 
+rule "#211 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "2", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#99 target = unacc with rank:0.0023148148148148147" 
+rule "#212 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "low", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "2", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#105 target = acc with rank:0.0023148148148148147" 
+rule "#213 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "vhigh", doors == "2", lug_boot == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#106 target = unacc with rank:0.0023148148148148147" 
+rule "#215 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "med", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#112 target = good with rank:0.0023148148148148147" 
+rule "#216 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#121 target = acc with rank:0.0023148148148148147" 
+rule "#217 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#122 target = unacc with rank:0.0023148148148148147" 
+rule "#218 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "vhigh", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "small", doors == "2", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#133 target = acc with rank:0.0023148148148148147" 
+rule "#219 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#134 target = unacc with rank:0.0023148148148148147" 
+rule "#220 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "med", maint == "high", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#139 target = acc with rank:0.0023148148148148147" 
+rule "#221 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "big", maint == "low", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#140 target = unacc with rank:0.0023148148148148147" 
+rule "#222 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "big", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#141 target = acc with rank:0.0023148148148148147" 
+rule "#224 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "big", maint == "med", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "small", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#142 target = acc with rank:0.0023148148148148147" 
+rule "#225 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "big", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "small", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#156 target = unacc with rank:0.0023148148148148147" 
+rule "#226 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "med", doors == "2", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "small", doors == "3", target : target)
 	 then 
+		 System.out.println("Decision on target = "+target +": (acc)");
+end
+
+rule "#227 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
+	 when
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "small", doors == "2", target : target)
+	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#158 target = vgood with rank:0.0023148148148148147" 
+rule "#228 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#159 target = good with rank:0.0023148148148148147" 
+rule "#229 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "low", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#165 target = vgood with rank:0.0023148148148148147" 
+rule "#230 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "med", doors == "3", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#166 target = good with rank:0.0023148148148148147" 
+rule "#231 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "med", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#171 target = vgood with rank:0.0023148148148148147" 
+rule "#235 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "2", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#172 target = acc with rank:0.0023148148148148147" 
+rule "#236 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "high", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "2", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#181 target = vgood with rank:0.0023148148148148147" 
+rule "#237 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "low", doors == "2", lug_boot == "med", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#182 target = good with rank:0.0023148148148148147" 
+rule "#242 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "low", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "2", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (good)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#188 target = vgood with rank:0.0023148148148148147" 
+rule "#243 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "2", lug_boot == "small", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#189 target = acc with rank:0.0023148148148148147" 
+rule "#244 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "med", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "med", doors == "2", lug_boot == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#199 target = vgood with rank:0.0023148148148148147" 
+rule "#247 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#214 target = vgood with rank:0.0023148148148148147" 
+rule "#248 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "med", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#223 target = vgood with rank:0.0023148148148148147" 
+rule "#249 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "low", maint == "high", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#246 target = vgood with rank:0.0023148148148148147" 
+rule "#250 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "small", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (vgood)");
+		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#261 target = vgood with rank:0.0023148148148148147" 
+rule "#251 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "big", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#19 target = acc with rank:0.006944444444444444" 
+rule "#252 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "low", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#26 target = unacc with rank:0.006944444444444444" 
+rule "#253 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#33 target = unacc with rank:0.006944444444444444" 
+rule "#254 target = good classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "vhigh", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "low", lug_boot == "med", doors == "2", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (good)");
 end
 
-rule "#46 target = acc with rank:0.006944444444444444" 
+rule "#258 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "med", maint == "med", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "2", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#104 target = unacc with rank:0.006944444444444444" 
+rule "#259 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "2", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#111 target = unacc with rank:0.006944444444444444" 
+rule "#260 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "vhigh", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "vhigh", doors == "2", lug_boot == "med", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#164 target = acc with rank:0.006944444444444444" 
+rule "#262 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "low", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "small", doors == "4", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#177 target = acc with rank:0.006944444444444444" 
+rule "#263 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "vhigh", maint == "low", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "small", doors == "5more", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#178 target = unacc with rank:0.006944444444444444" 
+rule "#264 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "vhigh", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "small", doors == "3", target : target)
 	 then 
+		 System.out.println("Decision on target = "+target +": (acc)");
+end
+
+rule "#265 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
+	 when
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "small", doors == "2", target : target)
+	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#179 target = acc with rank:0.006944444444444444" 
+rule "#266 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "vhigh", maint == "med", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "med", doors == "4", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#180 target = unacc with rank:0.006944444444444444" 
+rule "#267 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "vhigh", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "med", doors == "5more", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#187 target = acc with rank:0.006944444444444444" 
+rule "#268 target = vgood classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "med", doors == "3", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (acc)");
+		 System.out.println("Decision on target = "+target +": (vgood)");
 end
 
-rule "#194 target = acc with rank:0.006944444444444444" 
+rule "#269 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "med", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "med", lug_boot == "med", doors == "2", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#195 target = acc with rank:0.006944444444444444" 
+rule "#273 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "high", maint == "low", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "2", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#196 target = unacc with rank:0.006944444444444444" 
+rule "#274 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "high", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "2", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#197 target = acc with rank:0.006944444444444444" 
+rule "#275 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "high", maint == "med", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "med", maint == "high", doors == "2", lug_boot == "med", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#198 target = acc with rank:0.006944444444444444" 
+rule "#279 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "4", buying == "high", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "2", lug_boot == "big", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#238 target = unacc with rank:0.006944444444444444" 
+rule "#280 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "2", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#245 target = unacc with rank:0.006944444444444444" 
+rule "#281 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "vhigh", maint == "high", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "low", doors == "2", lug_boot == "med", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#282 target = unacc with rank:0.006944444444444444" 
+rule "#286 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "vhigh", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "2", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#57 target = unacc with rank:0.009259259259259259" 
+rule "#287 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "4", buying == "high", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "2", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#143 target = unacc with rank:0.009259259259259259" 
+rule "#288 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "more", buying == "high", lug_boot == "small", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "med", doors == "2", lug_boot == "med", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#157 target = unacc with rank:0.1111111111111111" 
+rule "#292 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "med", persons == "2", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "2", lug_boot == "big", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
-rule "#295 target = unacc with rank:0.1111111111111111" 
+rule "#293 target = unacc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "high", persons == "2", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "2", lug_boot == "small", target : target)
 	 then 
 		 System.out.println("Decision on target = "+target +": (unacc)");
 end
 
-rule "#0 target = unacc with rank:0.3333333333333333" 
+rule "#294 target = acc classifying 1.0 num of facts with rank:5.787037037037037E-4" 
 	 when
-		 examples.Car(safety == "low", target : target)
+		 examples.Car(safety == "high", persons == "more", buying == "high", maint == "high", doors == "2", lug_boot == "med", target : target)
 	 then 
-		 System.out.println("Decision on target = "+target +": (unacc)");
+		 System.out.println("Decision on target = "+target +": (acc)");
 end
 
+//THE END: Total number of facts correctly classified= 1728 over 1728
+//with 296 number of rules over 296 total number of rules 

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/golf.drl
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/golf.drl	2008-04-02 01:29:16 UTC (rev 19372)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/golf.drl	2008-04-02 03:06:01 UTC (rev 19373)
@@ -14,6 +14,13 @@
 		 System.out.println("Decision on decision = "+decision +": (Play)");
 end
 
+rule "#3 decision = Don't Play classifying 3.0 num of facts with rank:0.21428571428571427" 
+	 when
+		 examples.Golf(outlook == "sunny", humidity > 77.5, decision : decision)
+	 then 
+		 System.out.println("Decision on decision = "+decision +": (Don't Play)");
+end
+
 rule "#0 decision = Don't Play classifying 2.0 num of facts with rank:0.14285714285714285" 
 	 when
 		 examples.Golf(outlook == "rain", windy == true, decision : decision)
@@ -28,10 +35,5 @@
 		 System.out.println("Decision on decision = "+decision +": (Play)");
 end
 
-rule "#3 decision = Don't Play classifying 0.0 num of facts with rank:-1.0" 
-	 when
-		 examples.Golf(outlook == "sunny", humidity > 77.5, decision : decision)
-	 then 
-		 System.out.println("Decision on decision = "+decision +": (Don't Play)");
-end
-
+//THE END: Total number of facts correctly classified= 14 over 14
+//with 5 number of rules over 5 total number of rules 

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/nurseries.drl
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/nurseries.drl	2008-04-02 01:29:16 UTC (rev 19372)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/nurseries.drl	2008-04-02 03:06:01 UTC (rev 19373)
@@ -1,5875 +1,5875 @@
 package examples;
 
-rule "#20 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#838 classnursery = not_recom classifying 4320.0 num of facts with rank:0.3333333333333333" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "not_recom", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (not_recom)");
 end
 
-rule "#21 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#709 classnursery = priority classifying 288.0 num of facts with rank:0.022222222222222223" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "pretentious", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#22 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#710 classnursery = priority classifying 288.0 num of facts with rank:0.022222222222222223" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "usual", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#23 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#749 classnursery = priority classifying 288.0 num of facts with rank:0.022222222222222223" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "usual", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
-end
-
-rule "#24 classnursery = priority with rank:7.716049382716049E-5" 
-	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
-	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#25 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#788 classnursery = priority classifying 288.0 num of facts with rank:0.022222222222222223" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "pretentious", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#26 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#789 classnursery = priority classifying 288.0 num of facts with rank:0.022222222222222223" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "usual", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#27 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#750 classnursery = spec_prior classifying 216.0 num of facts with rank:0.016666666666666666" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#49 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#758 classnursery = spec_prior classifying 216.0 num of facts with rank:0.016666666666666666" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#50 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#759 classnursery = spec_prior classifying 216.0 num of facts with rank:0.016666666666666666" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#51 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#0 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "nonprob", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#52 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#29 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "slightly_prob", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#53 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#58 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "problematic", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#54 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#121 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "problematic", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#55 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#222 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "nonprob", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#56 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#251 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "slightly_prob", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#78 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#280 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "problematic", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#79 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#375 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "great_pret", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#80 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#460 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "pretentious", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#81 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#461 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "usual", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#82 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#462 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "great_pret", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#83 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#651 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "nonprob", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#84 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#680 classnursery = priority classifying 96.0 num of facts with rank:0.007407407407407408" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "slightly_prob", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#85 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#337 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#106 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#345 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#107 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#346 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#108 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#711 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#109 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#719 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#110 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#720 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#111 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#790 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#112 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#798 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#113 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#799 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#115 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#800 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#116 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#808 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#117 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#809 classnursery = spec_prior classifying 72.0 num of facts with rank:0.005555555555555556" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#118 classnursery = recommend with rank:7.716049382716049E-5" 
+rule "#751 classnursery = spec_prior classifying 54.0 num of facts with rank:0.004166666666666667" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (recommend)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#141 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#752 classnursery = spec_prior classifying 54.0 num of facts with rank:0.004166666666666667" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#142 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#753 classnursery = spec_prior classifying 54.0 num of facts with rank:0.004166666666666667" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#143 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#336 classnursery = priority classifying 48.0 num of facts with rank:0.003703703703703704" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#144 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#374 classnursery = priority classifying 48.0 num of facts with rank:0.003703703703703704" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#145 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#708 classnursery = priority classifying 48.0 num of facts with rank:0.003703703703703704" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#146 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#748 classnursery = priority classifying 48.0 num of facts with rank:0.003703703703703704" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#147 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#787 classnursery = priority classifying 48.0 num of facts with rank:0.003703703703703704" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#148 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#837 classnursery = priority classifying 48.0 num of facts with rank:0.003703703703703704" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#150 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#184 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#151 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#192 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#152 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#193 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#153 classnursery = recommend with rank:7.716049382716049E-5" 
+rule "#309 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (recommend)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#175 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#314 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#176 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#315 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#177 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#316 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#178 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#317 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#179 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#347 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#180 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#352 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#181 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#353 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#182 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#354 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#190 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#355 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#191 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#547 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#213 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#555 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#214 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#556 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#215 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#613 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#216 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#621 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#217 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#622 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#218 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#681 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#219 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#686 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#220 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#687 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#242 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#688 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#243 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#689 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#244 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#721 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#245 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#726 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#246 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#727 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#247 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#728 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#248 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#729 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#249 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#760 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#271 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#765 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#272 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#766 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#273 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#767 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#274 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#768 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#275 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#810 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#276 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#815 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#277 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#816 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#278 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#817 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#300 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#818 classnursery = spec_prior classifying 24.0 num of facts with rank:0.001851851851851852" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#301 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#338 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#302 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#339 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#303 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#340 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#304 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#712 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#305 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#713 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#306 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#714 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#307 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#754 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#395 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#755 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#396 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#791 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#397 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#792 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#398 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#793 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#399 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#801 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#400 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#802 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#401 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#803 classnursery = spec_prior classifying 18.0 num of facts with rank:0.001388888888888889" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#402 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#28 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#423 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#57 classnursery = very_recom classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#424 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#86 classnursery = very_recom classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#425 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#183 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#426 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#221 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#427 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#250 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#428 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#279 classnursery = very_recom classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#429 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#308 classnursery = very_recom classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#430 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#403 classnursery = very_recom classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#451 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#431 classnursery = very_recom classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#452 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#459 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#453 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#490 classnursery = very_recom classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#454 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#518 classnursery = very_recom classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#455 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#546 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#456 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#584 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#457 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#612 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#458 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#650 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#482 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#679 classnursery = priority classifying 16.0 num of facts with rank:0.0012345679012345679" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#483 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#326 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#484 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#327 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#485 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#364 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#486 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#365 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#487 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#698 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#488 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#699 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#489 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#738 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#510 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#739 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#511 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#777 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#512 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#778 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#513 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#827 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#514 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#828 classnursery = spec_prior classifying 12.0 num of facts with rank:9.25925925925926E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#515 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#756 classnursery = spec_prior classifying 9.0 num of facts with rank:6.944444444444445E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#516 classnursery = very_recom with rank:7.716049382716049E-5" 
+rule "#757 classnursery = priority classifying 9.0 num of facts with rank:6.944444444444445E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#517 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#1 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#538 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#6 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#539 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#7 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#540 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#8 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#541 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#9 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#542 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#30 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#543 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#35 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#544 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#36 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#545 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#37 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#553 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#38 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#554 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#59 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#576 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#64 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#577 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#65 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#578 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#66 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#579 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#67 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#580 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#87 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#581 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#92 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#582 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#93 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#583 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#94 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#604 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#95 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#605 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#122 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#606 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#127 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#607 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#128 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
-end
-
-rule "#608 classnursery = priority with rank:7.716049382716049E-5" 
-	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
-	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#609 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#129 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#610 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#130 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#611 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#156 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#619 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#161 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#620 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#162 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#642 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#163 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#643 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#164 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#644 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#194 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#645 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#199 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#646 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#200 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#647 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#201 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#648 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#202 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#649 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#223 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#671 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#228 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#672 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#229 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#673 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#230 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#674 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#231 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#675 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#252 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#676 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#257 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#677 classnursery = priority with rank:7.716049382716049E-5" 
+rule "#258 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#678 classnursery = spec_prior with rank:7.716049382716049E-5" 
+rule "#259 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#2 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#260 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#3 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#281 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#4 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#286 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#5 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#287 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#10 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#288 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#11 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#289 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#12 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#376 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#13 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#381 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#14 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#382 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#15 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#383 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#16 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#384 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#17 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#404 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#31 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#409 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#32 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#410 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#33 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#411 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#34 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#412 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
-end
-
-rule "#39 classnursery = priority with rank:1.5432098765432098E-4" 
-	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
-	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#40 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#432 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#41 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#437 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#42 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#438 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#43 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#439 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#44 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#440 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#45 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#463 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#46 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#468 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#60 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#469 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#61 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#470 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#62 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#471 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#63 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#491 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#68 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#496 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#69 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#497 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#70 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#498 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#71 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#499 classnursery = priority classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#72 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#519 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#73 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#524 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#74 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#525 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#75 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#526 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#88 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#527 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#89 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#557 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#90 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#562 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#91 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#563 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#96 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#564 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#97 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#565 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#98 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#585 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#99 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#590 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#100 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#591 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#101 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#592 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#102 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#593 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#103 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#623 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#123 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#628 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#124 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#629 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#125 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#630 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#126 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#631 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#131 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#652 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#132 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#657 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#133 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#658 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#134 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#659 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#135 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#660 classnursery = spec_prior classifying 8.0 num of facts with rank:6.172839506172839E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#136 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#185 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#137 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#186 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#138 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#187 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#157 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#310 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#158 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#311 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#159 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#312 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#160 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#313 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#165 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#318 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#166 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#319 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#167 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#320 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#168 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#321 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#169 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#322 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#170 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#323 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#171 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#324 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#172 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#325 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#188 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#341 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#189 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#342 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#195 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#348 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#196 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#349 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#197 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#350 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#198 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#351 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#203 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#356 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#204 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#357 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#205 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#358 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#206 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#359 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#207 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#360 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#208 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#361 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#209 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#362 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#210 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#363 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#224 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#548 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#225 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#549 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#226 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#550 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#227 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#614 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#232 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#615 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#233 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#616 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#234 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#682 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#235 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#683 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#236 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#684 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#237 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#685 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#238 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#690 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#239 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#691 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#253 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#692 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#254 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#693 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#255 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#694 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#256 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#695 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#261 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#696 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#262 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#697 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#263 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#715 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#264 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#716 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#265 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#722 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#266 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#723 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#267 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#724 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#268 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#725 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#282 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#730 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#283 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#731 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#284 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#732 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#285 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#733 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#290 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#734 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#291 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#735 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#292 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#736 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#293 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#737 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#294 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#761 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#295 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#762 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#296 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#763 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#297 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#764 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#377 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#769 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#378 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#770 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#379 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#771 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#380 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#772 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#385 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#773 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#386 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#774 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#387 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#775 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
-end
-
-rule "#388 classnursery = priority with rank:1.5432098765432098E-4" 
-	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
-	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#389 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#776 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#390 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#794 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#391 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#795 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#392 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#804 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#405 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#805 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#406 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#811 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#407 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#812 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#408 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#813 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#413 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#814 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#414 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#819 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#415 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#820 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#416 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#821 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#417 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#822 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#418 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#823 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#419 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#824 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#420 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#825 classnursery = priority classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#433 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#826 classnursery = spec_prior classifying 6.0 num of facts with rank:4.62962962962963E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#434 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#18 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#435 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#19 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#436 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#47 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#441 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#48 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#442 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#76 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#443 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#77 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#444 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#104 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#445 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#105 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#446 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#114 classnursery = very_recom classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#447 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#119 classnursery = very_recom classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#448 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#120 classnursery = very_recom classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#464 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#139 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#465 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#140 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#466 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#149 classnursery = very_recom classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#467 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#154 classnursery = very_recom classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#472 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#155 classnursery = very_recom classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#473 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#173 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#474 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#174 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#475 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#211 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#476 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#212 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#477 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#240 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#478 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#241 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#479 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#269 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#492 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#270 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#493 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#298 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#494 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#299 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#495 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#393 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#500 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#394 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#501 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#421 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#502 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#422 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#503 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#449 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#504 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#450 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#505 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#480 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#506 classnursery = very_recom with rank:1.5432098765432098E-4" 
+rule "#481 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#507 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#508 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#520 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#509 classnursery = priority classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+end
+
+rule "#536 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
+	 when
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#521 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#537 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#522 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#574 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#523 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#575 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#528 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#602 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#529 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#603 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#530 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#640 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#531 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#641 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#532 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#669 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#533 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#670 classnursery = spec_prior classifying 4.0 num of facts with rank:3.0864197530864197E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
 	 then 
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+end
+
+rule "#328 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
+	 when
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+	 then 
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+end
+
+rule "#329 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
+	 when
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#534 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#330 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#535 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#331 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#551 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#332 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#552 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#333 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#558 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#334 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#559 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#335 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#560 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#343 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#561 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#344 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#566 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#366 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#567 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#367 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#568 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#368 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#569 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#369 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#570 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#370 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#571 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#371 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#572 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#372 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#573 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#373 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#586 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#700 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#587 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#701 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#588 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#702 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#589 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#703 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#594 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#704 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#595 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#705 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#596 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#706 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#597 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#707 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#598 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#717 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#599 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#718 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#600 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#740 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#601 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#741 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#617 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#742 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#618 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#743 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#624 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#744 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#625 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#745 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#626 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#746 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#627 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#747 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#632 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#779 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#633 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#780 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#634 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#781 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#635 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#782 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#636 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#783 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#637 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#784 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#638 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#785 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#639 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#786 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#653 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#796 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#654 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#797 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#655 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#806 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#656 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#807 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#661 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#829 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#662 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#830 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#663 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#831 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#664 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#832 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#665 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#833 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#666 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#834 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#667 classnursery = priority with rank:1.5432098765432098E-4" 
+rule "#835 classnursery = priority classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#668 classnursery = spec_prior with rank:1.5432098765432098E-4" 
+rule "#836 classnursery = spec_prior classifying 3.0 num of facts with rank:2.314814814814815E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#328 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#2 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#329 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#3 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#330 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#4 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+end
+
+rule "#5 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
+	 when
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#331 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#10 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#332 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#11 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#333 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#12 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#334 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#13 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#335 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#14 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#343 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#15 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#344 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#16 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#366 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#17 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#367 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#31 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#368 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#32 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#369 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#33 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#370 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#34 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#371 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#39 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#372 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#40 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#373 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#41 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#700 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#42 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#701 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#43 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#702 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#44 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#703 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#45 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#704 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#46 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#705 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#60 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#706 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#61 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#707 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#62 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#717 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#63 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#718 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#68 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#740 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#69 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#741 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#70 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#742 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#71 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#743 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#72 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#744 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#73 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#745 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#74 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#746 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#75 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#747 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#88 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#779 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#89 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#780 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#90 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#781 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#91 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#782 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#96 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#783 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#97 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#784 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#98 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#785 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#99 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#786 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#100 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#796 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#101 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#797 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#102 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#806 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#103 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#807 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#123 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#829 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#124 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#830 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#125 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#831 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#126 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#832 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#131 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#833 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#132 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#834 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#133 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#835 classnursery = priority with rank:2.314814814814815E-4" 
+rule "#134 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#836 classnursery = spec_prior with rank:2.314814814814815E-4" 
+rule "#135 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#18 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#136 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#19 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#137 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#47 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#138 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#48 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#157 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#76 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#158 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#77 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#159 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#104 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#160 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#105 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#165 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#114 classnursery = very_recom with rank:3.0864197530864197E-4" 
+rule "#166 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#119 classnursery = very_recom with rank:3.0864197530864197E-4" 
+rule "#167 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#120 classnursery = very_recom with rank:3.0864197530864197E-4" 
+rule "#168 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#139 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#169 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#140 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#170 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#149 classnursery = very_recom with rank:3.0864197530864197E-4" 
+rule "#171 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#154 classnursery = very_recom with rank:3.0864197530864197E-4" 
+rule "#172 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#155 classnursery = very_recom with rank:3.0864197530864197E-4" 
+rule "#188 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#173 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#189 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#174 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#195 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#211 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#196 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#212 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#197 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#240 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#198 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#241 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#203 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#269 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#204 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#270 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#205 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#298 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#206 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#299 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#207 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#393 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#208 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#394 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#209 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#421 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#210 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#422 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#224 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#449 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#225 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#450 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#226 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#480 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#227 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#481 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#232 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#508 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#233 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#509 classnursery = priority with rank:3.0864197530864197E-4" 
+rule "#234 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#536 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#235 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#537 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#236 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#574 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#237 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#575 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#238 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#602 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#239 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#603 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#253 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#640 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#254 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#641 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#255 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#669 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#256 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#670 classnursery = spec_prior with rank:3.0864197530864197E-4" 
+rule "#261 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#185 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#262 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#186 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#263 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#187 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#264 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#310 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#265 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#311 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#266 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#312 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#267 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#313 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#268 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#318 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#282 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#319 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#283 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#320 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#284 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#321 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#285 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#322 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#290 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#323 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#291 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#324 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#292 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#325 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#293 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#341 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#294 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#342 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#295 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#348 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#296 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#349 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#297 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#350 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#377 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#351 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#378 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#356 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#379 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#357 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#380 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#358 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#385 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#359 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#386 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#360 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#387 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#361 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#388 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#362 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#389 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#363 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#390 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#548 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#391 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#549 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#392 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#550 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#405 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#614 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#406 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#615 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#407 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#616 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#408 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#682 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#413 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#683 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#414 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#684 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#415 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#685 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#416 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#690 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#417 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#691 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#418 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#692 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#419 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+end
+
+rule "#420 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
+	 when
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#693 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#433 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#694 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#434 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#695 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#435 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#696 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#436 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#697 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#441 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#715 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#442 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#716 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#443 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#722 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#444 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#723 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#445 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#724 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#446 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#725 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#447 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#730 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#448 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#731 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#464 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#732 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#465 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#733 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#466 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#734 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#467 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#735 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#472 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#736 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#473 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#737 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#474 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#761 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#475 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#762 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#476 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#763 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#477 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#764 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#478 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+end
+
+rule "#479 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
+	 when
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#769 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#492 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#770 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#493 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#771 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#494 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#772 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#495 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#773 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#500 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#774 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#501 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#775 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#502 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#776 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#503 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#794 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#504 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#795 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#505 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#804 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#506 classnursery = very_recom classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#805 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#507 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#811 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#520 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#812 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#521 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#813 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#522 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#814 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#523 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#819 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#528 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#820 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#529 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#821 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#530 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#822 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#531 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#823 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#532 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#824 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#533 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#825 classnursery = priority with rank:4.62962962962963E-4" 
+rule "#534 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#826 classnursery = spec_prior with rank:4.62962962962963E-4" 
+rule "#535 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#1 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#551 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#6 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#552 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#7 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#558 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#8 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#559 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#9 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#560 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#30 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#561 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#35 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#566 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#36 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#567 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#37 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#568 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#38 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#569 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#59 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#570 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#64 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#571 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#65 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#572 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#66 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#573 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#67 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#586 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#87 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#587 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#92 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#588 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#93 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#589 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#94 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#594 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#95 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#595 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#122 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#596 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#127 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#597 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#128 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#598 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#129 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#599 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#130 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#600 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#156 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#601 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#161 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#617 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#162 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#618 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#163 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#624 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#164 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#625 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#194 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#626 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#199 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#627 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#200 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#632 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#201 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#633 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#202 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#634 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#223 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#635 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#228 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#636 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#229 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#637 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#230 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#638 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#231 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#639 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#252 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#653 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#257 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#654 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#258 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#655 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#259 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#656 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "complete", form == "1", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#260 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#661 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#281 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#662 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#286 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#663 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#287 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#664 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#288 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#665 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#289 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#666 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#376 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#667 classnursery = priority classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#381 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#668 classnursery = spec_prior classifying 2.0 num of facts with rank:1.5432098765432098E-4" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#382 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#20 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#383 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#21 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#384 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#22 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#404 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#23 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#409 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#24 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#410 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#25 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#411 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#26 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#412 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#27 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#432 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#49 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#437 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#50 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#438 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#51 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#439 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#52 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#440 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#53 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#463 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#54 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#468 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#55 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#469 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#56 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#470 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#78 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#471 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#79 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#491 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#80 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#496 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#81 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#497 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#82 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#498 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#83 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#499 classnursery = priority with rank:6.172839506172839E-4" 
+rule "#84 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#519 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#85 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#524 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#106 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#525 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#107 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#526 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#108 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#527 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#109 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#557 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#110 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#562 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#111 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#563 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#112 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#564 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#113 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#565 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#115 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#585 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#116 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#590 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#117 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#591 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#118 classnursery = recommend classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (recommend)");
 end
 
-rule "#592 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#141 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#593 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#142 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#623 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#143 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#628 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#144 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#629 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#145 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#630 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#146 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#631 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#147 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#652 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#148 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#657 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#150 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "complete", form == "3", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#658 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#151 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "complete", form == "more", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#659 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#152 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "complete", form == "2", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#660 classnursery = spec_prior with rank:6.172839506172839E-4" 
+rule "#153 classnursery = recommend classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", children == "complete", form == "1", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (recommend)");
 end
 
-rule "#756 classnursery = spec_prior with rank:6.944444444444445E-4" 
+rule "#175 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#757 classnursery = priority with rank:6.944444444444445E-4" 
+rule "#176 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#326 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#177 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#327 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#178 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#364 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#179 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#365 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#180 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#698 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#181 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#699 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#182 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#738 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#190 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#739 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#191 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#777 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#213 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#778 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#214 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#827 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#215 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#828 classnursery = spec_prior with rank:9.25925925925926E-4" 
+rule "#216 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "inconv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#28 classnursery = priority with rank:0.0012345679012345679" 
+rule "#217 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "problematic", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#57 classnursery = very_recom with rank:0.0012345679012345679" 
+rule "#218 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
-end
-
-rule "#86 classnursery = very_recom with rank:0.0012345679012345679" 
-	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
-	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
-end
-
-rule "#183 classnursery = priority with rank:0.0012345679012345679" 
-	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
-	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#221 classnursery = priority with rank:0.0012345679012345679" 
+rule "#219 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#250 classnursery = priority with rank:0.0012345679012345679" 
+rule "#220 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#279 classnursery = very_recom with rank:0.0012345679012345679" 
+rule "#242 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#308 classnursery = very_recom with rank:0.0012345679012345679" 
+rule "#243 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#403 classnursery = very_recom with rank:0.0012345679012345679" 
+rule "#244 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#431 classnursery = very_recom with rank:0.0012345679012345679" 
+rule "#245 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#459 classnursery = priority with rank:0.0012345679012345679" 
+rule "#246 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#490 classnursery = very_recom with rank:0.0012345679012345679" 
+rule "#247 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#518 classnursery = very_recom with rank:0.0012345679012345679" 
+rule "#248 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#546 classnursery = priority with rank:0.0012345679012345679" 
+rule "#249 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#584 classnursery = priority with rank:0.0012345679012345679" 
+rule "#271 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#612 classnursery = priority with rank:0.0012345679012345679" 
+rule "#272 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#650 classnursery = priority with rank:0.0012345679012345679" 
+rule "#273 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#679 classnursery = priority with rank:0.0012345679012345679" 
+rule "#274 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#338 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#275 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#339 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#276 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#340 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#277 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#712 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#278 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#713 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#300 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#714 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#301 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#754 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#302 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "1", housing == "critical", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#755 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#303 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "1", housing == "less_conv", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#791 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#304 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#792 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#305 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#793 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#306 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#801 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#307 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#802 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#395 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#803 classnursery = spec_prior with rank:0.001388888888888889" 
+rule "#396 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#184 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#397 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#192 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#398 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#193 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#399 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "great_pret", social == "problematic", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#309 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#400 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#314 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#401 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#315 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#402 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#316 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#423 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#317 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#424 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#347 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#425 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#352 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#426 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#353 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#427 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#354 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#428 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#355 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#429 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#547 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#430 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#555 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#451 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#556 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#452 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#613 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#453 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#621 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#454 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#622 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#455 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#681 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#456 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#686 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#457 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#687 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#458 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "great_pret", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#688 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#482 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#689 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#483 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#721 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#484 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#726 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#485 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#727 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#486 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#728 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#487 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#729 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#488 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#760 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#489 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "pretentious", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#765 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#510 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#766 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#511 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#767 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#512 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#768 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#513 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#810 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#514 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#815 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#515 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#816 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#516 classnursery = very_recom classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "critical", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (very_recom)");
 end
 
-rule "#817 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#517 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "usual", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#818 classnursery = spec_prior with rank:0.001851851851851852" 
+rule "#538 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "less_conv", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#336 classnursery = priority with rank:0.003703703703703704" 
+rule "#539 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "nonprob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#374 classnursery = priority with rank:0.003703703703703704" 
+rule "#540 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "slightly_prob", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#708 classnursery = priority with rank:0.003703703703703704" 
+rule "#541 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "great_pret", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#748 classnursery = priority with rank:0.003703703703703704" 
+rule "#542 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "pretentious", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#787 classnursery = priority with rank:0.003703703703703704" 
+rule "#543 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "great_pret", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#837 classnursery = priority with rank:0.003703703703703704" 
+rule "#544 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "usual", housing == "convenient", finance == "convenient", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#751 classnursery = spec_prior with rank:0.004166666666666667" 
+rule "#545 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "3", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#752 classnursery = spec_prior with rank:0.004166666666666667" 
+rule "#553 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "more", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#753 classnursery = spec_prior with rank:0.004166666666666667" 
+rule "#554 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "complete", form == "2", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#337 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#576 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#345 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#577 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#346 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#578 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "very_crit", social == "problematic", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#711 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#579 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#719 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#580 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#720 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#581 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "great_pret", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#790 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#582 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#798 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#583 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "great_pret", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#799 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#604 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "great_pret", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#800 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#605 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#808 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#606 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#809 classnursery = spec_prior with rank:0.005555555555555556" 
+rule "#607 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "critical", parents == "pretentious", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#0 classnursery = priority with rank:0.007407407407407408" 
+rule "#608 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "nonprob", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#29 classnursery = priority with rank:0.007407407407407408" 
+rule "#609 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "great_pret", social == "slightly_prob", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#58 classnursery = priority with rank:0.007407407407407408" 
+rule "#610 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "pretentious", social == "problematic", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#121 classnursery = priority with rank:0.007407407407407408" 
+rule "#611 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "proper", parents == "usual", social == "problematic", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "nonprob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#222 classnursery = priority with rank:0.007407407407407408" 
+rule "#619 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "nonprob", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "inconv", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#251 classnursery = priority with rank:0.007407407407407408" 
+rule "#620 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "pretentious", social == "slightly_prob", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "problematic", children == "complete", form == "1", housing == "convenient", finance == "convenient", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#280 classnursery = priority with rank:0.007407407407407408" 
+rule "#642 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "improper", parents == "usual", social == "problematic", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#375 classnursery = priority with rank:0.007407407407407408" 
+rule "#643 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "nonprob", parents == "great_pret", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#460 classnursery = priority with rank:0.007407407407407408" 
+rule "#644 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "pretentious", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#461 classnursery = priority with rank:0.007407407407407408" 
+rule "#645 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "problematic", parents == "usual", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#462 classnursery = priority with rank:0.007407407407407408" 
+rule "#646 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "less_proper", social == "slightly_prob", parents == "great_pret", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#651 classnursery = priority with rank:0.007407407407407408" 
+rule "#647 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "nonprob", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#680 classnursery = priority with rank:0.007407407407407408" 
+rule "#648 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "slightly_prob", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#750 classnursery = spec_prior with rank:0.016666666666666666" 
+rule "#649 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "incomplete", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "pretentious", social == "slightly_prob", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#758 classnursery = spec_prior with rank:0.016666666666666666" 
+rule "#671 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "completed", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#759 classnursery = spec_prior with rank:0.016666666666666666" 
+rule "#672 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "very_crit", children == "foster", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "complete", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#709 classnursery = priority with rank:0.022222222222222223" 
+rule "#673 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "pretentious", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#710 classnursery = priority with rank:0.022222222222222223" 
+rule "#674 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "proper", parents == "usual", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "2", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 
-rule "#749 classnursery = priority with rank:0.022222222222222223" 
+rule "#675 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "improper", parents == "usual", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "incomplete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#788 classnursery = priority with rank:0.022222222222222223" 
+rule "#676 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "pretentious", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "complete", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#789 classnursery = priority with rank:0.022222222222222223" 
+rule "#677 classnursery = priority classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "priority", has_nurs == "less_proper", parents == "usual", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "completed", classnursery : classnursery)
 	 then 
 		 System.out.println("Decision on classnursery = "+classnursery +": (priority)");
 end
 
-rule "#838 classnursery = not_recom with rank:0.3333333333333333" 
+rule "#678 classnursery = spec_prior classifying 1.0 num of facts with rank:7.716049382716049E-5" 
 	 when
-		 examples.Nursery(health == "not_recom", classnursery : classnursery)
+		 examples.Nursery(health == "recommended", has_nurs == "critical", parents == "usual", social == "problematic", housing == "convenient", finance == "inconv", form == "1", children == "foster", classnursery : classnursery)
 	 then 
-		 System.out.println("Decision on classnursery = "+classnursery +": (not_recom)");
+		 System.out.println("Decision on classnursery = "+classnursery +": (spec_prior)");
 end
 

Added: labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/poker_hands.drl
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/poker_hands.drl	                        (rev 0)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/poker_hands.drl	2008-04-02 03:06:01 UTC (rev 19373)
@@ -0,0 +1,73336 @@
+package examples;
+
+rule "#3051 poker_hand = 1 classifying 18.0 num of facts with rank:7.197121151539384E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 4, c2 > 1.0, c3 <= 13, c1 > 1.0, c4 > 2.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6400 poker_hand = 1 classifying 16.0 num of facts with rank:6.397441023590564E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c1 > 1.5, c3 > 2.5, c4 <= 13, c2 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#274 poker_hand = 0 classifying 15.0 num of facts with rank:5.997600959616154E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 1, c1 <= 13, c2 <= 13, c4 > 1.5, c3 > 2.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1551 poker_hand = 0 classifying 15.0 num of facts with rank:5.997600959616154E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 1, c1 > 1.5, c3 > 1.0, c2 > 1.5, c4 > 1.0, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7028 poker_hand = 0 classifying 15.0 num of facts with rank:5.997600959616154E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c1 <= 12.0, c2 > 1.5, c4 > 2.0, c3 > 1.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1756 poker_hand = 1 classifying 14.0 num of facts with rank:5.597760895641743E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 3, c4 > 1.0, c1 <= 13, c5 > 2.5, c2 <= 9.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2544 poker_hand = 1 classifying 14.0 num of facts with rank:5.597760895641743E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 <= 12.5, c1 <= 12.0, c2 > 2.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2554 poker_hand = 0 classifying 14.0 num of facts with rank:5.597760895641743E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 2, c4 > 1.0, c1 > 1.0, c2 > 2.0, c3 <= 12.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2844 poker_hand = 0 classifying 14.0 num of facts with rank:5.597760895641743E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 4, c1 <= 12.5, c2 > 1.0, c4 <= 12.0, c3 > 1.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4533 poker_hand = 0 classifying 14.0 num of facts with rank:5.597760895641743E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c3 <= 12.0, c1 > 1.0, c2 > 1.5, c4 > 2.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5734 poker_hand = 0 classifying 14.0 num of facts with rank:5.597760895641743E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c2 <= 13, c4 > 1.0, c3 <= 9.5, c1 > 1.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6772 poker_hand = 0 classifying 14.0 num of facts with rank:5.597760895641743E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c5 > 1.0, c1 <= 13, c3 <= 12.5, c2 <= 12.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8775 poker_hand = 0 classifying 14.0 num of facts with rank:5.597760895641743E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 1, c3 > 2.0, c4 > 1.5, c5 > 1.5, c1 > 2.0, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#772 poker_hand = 0 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 3, c5 > 2.0, c1 <= 12.5, c2 <= 13, c3 <= 13, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2991 poker_hand = 0 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 1, c5 > 1.0, c1 <= 12.5, c2 > 1.0, c3 <= 12.0, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3990 poker_hand = 0 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 > 3.0, c2 > 2.0, c1 <= 12, c4 > 2.5, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4505 poker_hand = 1 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c4 > 1.0, c3 > 1.0, c5 > 3.0, c1 <= 13, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5309 poker_hand = 0 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 13, c2 > 1.0, c5 > 6.5, c3 > 1.0, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5472 poker_hand = 0 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c3 <= 12.0, c2 > 1.0, c1 > 1.0, c4 <= 13, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8992 poker_hand = 1 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 4, c1 <= 13, c3 <= 11.5, c2 > 1.0, c4 <= 13, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9768 poker_hand = 0 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 <= 13, c4 <= 10.0, c2 <= 13, c3 <= 13, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10141 poker_hand = 1 classifying 13.0 num of facts with rank:5.197920831667333E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 2, c3 > 1.5, c1 > 1.0, c2 > 1.5, c4 <= 11, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2799 poker_hand = 0 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 1, c5 <= 13, c2 <= 13, c4 <= 10.5, c1 <= 11.5, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3300 poker_hand = 0 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 > 1.0, c1 > 2.0, c2 > 1.0, c3 > 1.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3999 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 4, c4 <= 13, c1 > 2.5, c2 > 2.0, c3 <= 13, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4598 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c2 > 2.5, c5 > 2.5, c1 > 2.5, c4 > 1.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5292 poker_hand = 0 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c4 <= 13, c1 > 2.0, c5 <= 11.0, c2 > 3.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5791 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c4 > 1.5, c2 <= 13, c3 > 1.0, c1 > 1.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6375 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c2 > 2.5, c3 > 2.0, c5 > 1.5, c4 > 1.0, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6752 poker_hand = 0 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c2 > 1.5, c4 > 1.0, c5 > 3.5, c1 > 2.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7217 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 <= 13, c1 > 2.5, c2 > 1.0, c4 <= 9.0, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7961 poker_hand = 1 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c5 > 1.0, c1 > 1.0, c2 > 1.5, c3 > 1.0, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9319 poker_hand = 0 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 <= 11.0, c5 > 1.0, c3 > 1.0, c4 > 2.0, c1 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9855 poker_hand = 0 classifying 12.0 num of facts with rank:4.798080767692923E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 > 2.0, c2 <= 13, c4 > 3.0, c1 <= 11.0, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#85 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 2, c4 > 3.0, c5 <= 11.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#293 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 <= 12.0, c3 > 1.0, c4 <= 11.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#355 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 4, c3 <= 13, c5 <= 13, c2 > 1.0, c1 > 3.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#874 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 4, c2 <= 12.5, c4 > 1.0, c5 > 1.0, c1 <= 13, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2235 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 1, c4 > 1.0, c2 <= 13, c1 > 1.5, c3 <= 13, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2957 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 1, c2 <= 12.5, c1 > 1.0, c3 <= 12.5, c4 <= 12, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3077 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 <= 11.0, c1 <= 13, c2 > 1.0, c4 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3763 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 3, c5 > 2.0, c3 > 1.5, c1 > 2.5, c2 <= 9.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3805 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 2, c5 <= 11.5, c1 > 1.0, c2 > 3.0, c3 > 2.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4623 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 2.0, c3 <= 12.5, c4 <= 7.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4669 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 2, c3 > 3.0, c1 > 2.0, c2 <= 13, c4 <= 12.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4682 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c5 > 2.0, c3 <= 12.5, c4 > 1.0, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4761 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 1, c1 > 3.5, c4 > 1.5, c5 > 1.0, c2 <= 11.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5421 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 1.0, c1 > 1.0, c5 > 1.5, c3 > 1.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5768 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c2 > 1.5, c3 > 2.0, c1 > 1.0, c4 > 1.0, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5797 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 <= 11.0, c4 <= 13, c5 > 1.0, c3 > 2.5, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5827 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c4 <= 12.5, c5 <= 12.5, c1 > 1.0, c3 > 2.0, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6383 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 > 4.5, c1 <= 12.5, c5 <= 12.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6587 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 > 2.5, c4 > 1.5, c3 <= 11.0, c5 > 1.0, c2 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6759 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c2 > 1.0, c1 > 1.0, c5 <= 13, c3 > 1.0, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8681 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 <= 10.5, c1 <= 12.5, c3 > 1.0, c5 <= 11.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8816 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 <= 12.0, c4 <= 10.0, c1 > 1.0, c5 > 4.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9160 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c1 > 1.5, c2 > 2.0, c3 > 2.0, c4 <= 12.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9236 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 1, c1 > 1.0, c2 > 1.0, c3 <= 12.5, c4 > 1.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9740 poker_hand = 0 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 3, c4 > 2.0, c1 <= 13, c2 <= 12.0, c3 > 1.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10103 poker_hand = 1 classifying 11.0 num of facts with rank:4.3982407037185126E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 2, c1 > 2.0, c3 <= 12.0, c2 > 1.0, c4 <= 13, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1 poker_hand = 5 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 4, c5 <= 12.5, c3 <= 12.0, c2 <= 11.5, c1 <= 10.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#22 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 1, c4 <= 8.0, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#361 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 3, c2 > 1.0, c3 > 1.5, c1 <= 12.0, c4 > 2.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#397 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 3, c3 <= 12, c4 > 1.0, c1 > 2.0, c2 > 1.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#523 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 2, c4 > 1.0, c5 <= 13, c3 <= 12.0, c1 > 3.0, c2 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#654 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 > 1.0, c1 > 1.0, c2 <= 12.5, c3 > 2.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1392 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 <= 12.0, c5 <= 9.5, c1 <= 12.5, c4 > 3.0, c2 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1449 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 2, c5 > 1.5, c1 <= 11.0, c2 > 1.0, c3 <= 13, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1705 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 > 2.5, c5 > 4.0, c1 > 1.0, c2 <= 13, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1851 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 2, c4 > 1.0, c1 > 1.0, c5 > 4.5, c2 <= 13, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2033 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 4, c3 > 4.5, c2 > 1.0, c1 > 1.5, c4 <= 12.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2251 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 > 2.5, c5 > 3.5, c1 <= 12.5, c2 > 1.0, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2260 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 2, c1 > 2.0, c2 > 1.0, c3 <= 12, c4 <= 11.5, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2332 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 4, c4 > 3.0, c2 > 1.0, c1 <= 12, c3 > 3.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2537 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 > 1.0, c5 <= 12.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2861 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 2, c3 > 2.0, c1 > 1.5, c2 > 2.0, c4 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3015 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 3, c3 > 1.5, c4 > 1.0, c2 <= 12.0, c1 > 1.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3596 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 3, c3 > 1.0, c1 > 2.0, c2 > 1.5, c4 <= 13, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4132 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 <= 12.5, c5 > 2.5, c2 > 1.5, c3 > 2.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4375 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 > 1.0, c4 <= 13, c5 <= 12.0, c1 <= 11.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4469 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 <= 11.0, c3 > 1.0, c1 <= 12.0, c4 > 1.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4635 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 <= 10.0, c3 > 1.5, c1 > 4.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4824 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 2, c1 > 3.5, c2 > 2.0, c4 > 1.5, c5 > 1.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5195 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 2, c2 > 3.5, c3 > 1.5, c1 <= 12, c4 <= 12.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5307 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 13, c2 > 1.0, c5 <= 6.5, c3 <= 13, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5393 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c2 > 7.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5857 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 > 1.0, c5 <= 10.0, c1 > 2.5, c2 > 1.5, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6061 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 > 2.0, c4 > 8.0, c1 > 2.5, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6202 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 1, c3 <= 12.0, c1 <= 13, c2 > 3.5, c4 > 3.0, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6653 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 > 1.0, c3 <= 7.5, c5 > 4.0, c2 <= 10.5, c4 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6768 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 <= 13, c2 > 3.0, c3 > 2.0, c5 > 1.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7047 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c4 <= 11.0, c3 <= 12.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7250 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 3, c3 > 1.5, c1 > 2.0, c2 > 1.0, c4 <= 11.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7338 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 3, c3 <= 13, c1 > 3.0, c4 <= 13, c2 > 2.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7492 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 2, c1 > 1.0, c2 > 1.5, c3 > 2.0, c4 > 1.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7658 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 3, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 > 3.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8109 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 > 3.5, c2 > 4.0, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8111 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c5 > 1.0, c2 > 1.0, c1 <= 12.5, c3 <= 13, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8143 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 > 1.0, c4 <= 11.0, c1 > 2.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9055 poker_hand = 1 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 <= 9.5, c2 > 1.0, c3 > 3.0, c4 <= 13, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9314 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 2, c4 > 2.0, c5 <= 13, c1 > 2.5, c2 <= 11.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9401 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 2, c1 > 1.0, c3 > 1.0, c5 > 1.5, c2 <= 11.0, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9464 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 > 2.0, c4 <= 9.0, c1 > 1.5, c2 > 2.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9590 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 4, c1 > 1.0, c3 > 3.0, c2 <= 13, c4 > 1.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9968 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 <= 11.5, c2 <= 10.0, c3 > 1.5, c1 <= 11.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10059 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 3, c4 > 1.0, c2 <= 13, c1 > 3.5, c3 > 3.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10220 poker_hand = 0 classifying 10.0 num of facts with rank:3.9984006397441024E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 2, c1 <= 12.5, c5 > 2.0, c4 <= 12.0, c2 > 1.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#390 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 4, c4 > 1.5, c1 > 1.0, c2 > 2.0, c3 > 2.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#443 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 3, c3 > 1.0, c4 > 2.0, c1 > 3.5, c2 > 1.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#543 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 <= 12.0, c4 > 1.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#861 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 2, c3 > 2.5, c5 <= 12.5, c4 > 3.0, c2 > 1.5, c1 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#920 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 4, c5 <= 13, c2 <= 11.5, c1 <= 13, c3 > 2.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#928 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 > 1.0, c1 > 1.5, c3 <= 10.5, c4 > 6.0, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1121 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 <= 12.5, c2 > 1.5, c5 > 2.0, c3 <= 12.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1722 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 > 1.0, c1 > 1.5, c5 <= 12.0, c2 > 2.5, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1914 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 3, c5 > 1.0, c4 <= 11.0, c1 > 3.0, c2 > 6.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1994 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 <= 11.0, c4 > 2.5, c1 <= 12.5, c3 <= 11.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2195 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 1, c5 <= 11.0, c3 > 1.5, c1 <= 11.0, c2 > 1.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2515 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 3, c1 <= 10.5, c5 > 5.0, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2633 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 1, c3 <= 12.5, c4 > 1.5, c2 <= 12.5, c5 <= 9.5, c1 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2989 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 2, c5 > 1.0, c2 > 1.5, c1 <= 13, c3 > 4.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3060 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 3, c1 > 1.5, c2 <= 13, c4 <= 12.0, c3 > 1.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3396 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 <= 10.5, c1 <= 13, c3 <= 11.0, c4 <= 9.5, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3413 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 2, c1 > 1.0, c4 > 2.0, c5 <= 9.0, c2 <= 12.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3659 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 > 2.0, c4 > 3.0, c3 <= 12.5, c2 > 1.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3785 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 > 2.0, c1 <= 12.0, c3 > 2.0, c5 > 1.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4167 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 > 1.5, c1 <= 11.0, c5 <= 8.5, c2 > 2.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4243 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 <= 11.0, c2 <= 12.5, c3 > 1.0, c4 > 2.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4799 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 > 2.0, c4 > 2.0, c2 > 2.0, c3 > 1.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4852 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 <= 10.0, c1 > 2.0, c2 > 3.5, c5 <= 12.5, c3 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5076 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 2, c1 > 2.0, c2 > 2.5, c3 <= 13, c4 > 1.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5336 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c2 > 1.0, c4 > 1.0, c5 > 1.0, c1 <= 11.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5491 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c4 <= 12.0, c5 <= 11.0, c3 > 1.0, c1 <= 12, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5522 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 12.0, c5 <= 13, c3 > 2.0, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5582 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 > 5.0, c1 > 5.5, c4 > 1.0, c5 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5724 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c1 > 2.0, c2 <= 11.0, c4 > 2.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5837 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c2 > 3.0, c3 > 2.0, c4 > 2.0, c1 > 2.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5987 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c5 > 3.0, c3 > 1.0, c1 > 2.0, c4 <= 12, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6192 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 2, c1 > 2.0, c4 > 3.5, c5 <= 10.0, c2 > 1.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6525 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c2 > 1.0, c1 > 2.0, c3 > 1.5, c4 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6596 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 3, c5 > 1.0, c1 > 2.0, c2 > 1.0, c3 > 1.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6680 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 3, c3 > 1.5, c1 > 1.0, c2 > 2.5, c4 > 2.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6738 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 <= 9.0, c3 <= 9.0, c1 > 4.0, c4 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7119 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c3 > 2.5, c4 > 2.5, c1 <= 12.5, c2 > 1.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7614 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 4, c1 > 2.5, c2 <= 12.5, c5 > 3.0, c3 > 2.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7679 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 4, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 > 2.0, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7687 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 3, c1 > 2.0, c2 <= 13, c3 > 2.0, c4 <= 13, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7859 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 2.5, c5 <= 11.5, c1 > 1.5, c2 <= 12.5, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7920 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c4 > 1.0, c1 > 2.0, c2 > 1.0, c5 > 2.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8208 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 3, c2 > 1.5, c1 > 1.0, c3 <= 12.0, c4 > 1.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8579 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 1.5, c2 <= 12.5, c3 <= 13, c4 > 1.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8616 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c1 > 1.0, c3 > 1.5, c4 <= 13, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8803 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 <= 13, c5 > 3.5, c1 > 1.5, c3 <= 13, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9199 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9229 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 2, c3 > 1.0, c1 > 1.0, c2 > 4.5, c4 > 1.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9302 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 <= 13, c1 <= 10.0, c2 <= 10.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9559 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 <= 12.0, c3 > 1.5, c5 > 3.0, c1 > 2.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9699 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 4, c3 > 1.0, c5 <= 13, c2 > 1.5, c1 > 3.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9707 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 > 2.0, c5 > 2.5, c1 > 1.5, c2 > 2.0, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10131 poker_hand = 0 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 3, c2 <= 11.5, c1 > 1.0, c3 <= 13, c4 <= 13, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10229 poker_hand = 1 classifying 9.0 num of facts with rank:3.598560575769692E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 <= 8.0, c2 <= 11.5, c3 <= 13, c1 > 1.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#47 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 2, c2 > 1.0, c5 > 1.5, c1 <= 10.0, c3 <= 10.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#93 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 1, c5 > 3.0, c3 <= 12.5, c1 > 2.5, c2 <= 12.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#373 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 > 3.0, c3 > 2.5, c1 > 2.0, c2 > 2.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#495 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 1, c3 <= 10.0, c1 <= 12.5, c2 > 2.0, c4 > 1.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#505 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 <= 11.0, c1 > 4.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#766 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 <= 8.5, c3 > 1.5, c2 > 1.5, c1 <= 10.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1130 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 1, c2 > 3.5, c1 > 2.0, c3 > 2.0, c4 <= 12.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1191 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 3, c5 <= 12.5, c1 > 1.0, c2 > 2.5, c3 <= 9.5, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1517 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 > 6.0, c2 > 3.0, c5 > 1.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1977 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 <= 9.0, c4 > 1.0, c1 <= 12.0, c2 > 1.5, c5 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2183 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 > 3.0, c5 <= 10.5, c2 > 1.0, c1 <= 11.0, c4 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2323 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 <= 12.5, c5 > 2.5, c2 > 2.5, c3 > 2.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2376 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 4, c1 > 1.5, c2 > 3.0, c3 > 1.5, c4 <= 11.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2384 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 3, c4 > 3.5, c1 > 1.5, c5 > 3.0, c2 > 2.5, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2388 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 2, c2 <= 12.5, c3 > 2.0, c1 <= 11.0, c4 > 3.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2571 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 4, c1 > 1.0, c4 > 2.0, c2 > 2.0, c3 <= 11.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2585 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 > 1.5, c5 <= 9.0, c4 > 2.0, c1 <= 10.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2857 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 3, c4 > 3.0, c1 <= 12.5, c5 > 6.5, c2 <= 13, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3245 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 > 1.0, c2 <= 10.0, c4 > 3.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3381 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 > 3.0, c1 > 1.0, c2 > 2.0, c4 > 2.5, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3649 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 2, c1 > 1.0, c2 > 1.0, c3 > 1.5, c4 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3754 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 4, c1 > 2.0, c2 > 1.0, c3 <= 12.5, c4 <= 12.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3868 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 <= 11.0, c1 > 4.0, c2 > 4.5, c3 <= 11.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4262 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 > 3.0, c3 <= 12.0, c4 <= 11.5, c2 > 2.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4312 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 <= 10.0, c2 <= 12.5, c1 <= 12, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4573 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c2 > 2.0, c1 > 1.5, c3 > 2.0, c4 > 4.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4810 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 4, c5 <= 10.5, c4 > 2.5, c1 > 3.5, c2 <= 13, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4866 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c5 > 1.5, c3 > 3.0, c1 <= 10.5, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4875 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 > 2.0, c5 <= 13, c4 <= 11.5, c2 > 2.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4899 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 3, c1 <= 13, c4 <= 12, c2 > 1.0, c3 > 1.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5315 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 > 1.0, c2 > 2.0, c5 <= 12.0, c3 <= 11.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5404 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 <= 12.0, c3 > 2.5, c1 <= 13, c4 <= 11.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5487 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 > 1.5, c3 > 5.5, c1 <= 13, c2 > 1.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5656 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 4, c3 > 2.5, c2 > 1.0, c5 > 1.5, c1 > 1.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5664 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 3, c1 > 2.0, c3 <= 13, c2 <= 12.0, c4 <= 12.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6008 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 12.0, c1 > 3.5, c3 <= 12.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6026 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c3 > 1.5, c2 > 1.0, c4 > 2.0, c1 > 2.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6237 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 <= 11.0, c3 <= 10.5, c5 > 1.5, c4 > 4.0, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6272 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 2, c1 <= 13, c3 > 2.0, c4 <= 12.5, c5 <= 12.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6304 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 3, c2 > 2.0, c3 > 2.0, c1 > 2.0, c5 > 5.5, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6821 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 <= 12.0, c1 > 2.0, c3 <= 12.0, c4 <= 13, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7087 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c1 > 1.0, c2 > 1.0, c5 <= 10.5, c3 > 1.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7204 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 <= 11.0, c3 <= 13, c1 > 2.0, c4 <= 5.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7345 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 > 3.5, c5 <= 10.0, c3 > 3.0, c1 > 3.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7472 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 1, c1 <= 13, c2 > 2.5, c5 <= 8.5, c3 > 1.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7601 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 1, c3 <= 9.5, c1 <= 12.5, c4 > 1.0, c5 > 2.0, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7866 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 > 2.0, c1 > 1.5, c2 > 3.0, c3 > 1.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7953 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 3.0, c3 > 1.0, c2 > 2.0, c4 > 2.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8026 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 <= 10.5, c3 > 2.0, c5 <= 11.5, c1 > 4.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8280 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 > 1.5, c4 > 1.0, c3 > 3.0, c5 <= 6.5, c2 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8329 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 13, c2 > 1.0, c5 <= 11.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8552 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c3 <= 13, c1 > 2.5, c2 <= 6.5, c4 <= 13, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9246 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 > 2.5, c4 <= 10.0, c2 > 2.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9413 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 > 3.0, c2 <= 12.0, c5 <= 11.0, c1 > 2.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9506 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 1, c1 <= 13, c2 > 1.5, c3 <= 13, c4 > 1.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9667 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 3, c4 > 1.0, c5 <= 13, c2 > 2.0, c1 > 1.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9735 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 4, c2 > 1.0, c3 <= 11.5, c1 > 2.0, c4 > 3.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9838 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 1, c1 <= 12.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9988 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 3, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10160 poker_hand = 1 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 4, c2 > 4.5, c5 <= 13, c1 > 1.5, c3 <= 13, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10165 poker_hand = 0 classifying 8.0 num of facts with rank:3.198720511795282E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 <= 10.5, c1 <= 11.5, c2 <= 12.0, c4 > 3.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#218 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 2, c1 > 1.0, c3 > 2.5, c5 > 3.0, c2 > 3.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#229 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 1, c1 <= 11.5, c5 > 4.0, c2 > 4.5, c3 > 2.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#450 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 <= 12.5, c4 <= 12, c2 > 2.5, c3 > 2.0, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#463 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 <= 12.0, c2 > 3.0, c1 <= 13, c3 > 2.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#478 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 3, c1 <= 12.0, c2 > 3.5, c5 <= 11.5, c3 <= 12.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#702 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 <= 11.5, c4 > 2.5, c5 > 2.0, c2 > 4.5, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#708 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 1, c3 > 6.0, c1 <= 13, c2 > 2.0, c5 <= 12.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#798 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 4, c1 > 1.0, c2 > 1.5, c4 <= 12.0, c3 > 4.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#818 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 2, c1 <= 12.0, c3 <= 11.5, c2 > 3.5, c5 > 2.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1023 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 3, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1233 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 3, c3 <= 12.0, c1 > 2.0, c2 > 3.5, c5 > 1.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1307 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 4, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1336 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 1, c2 <= 13, c3 <= 12.0, c1 > 2.5, c5 <= 11.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1342 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 4, c1 > 1.5, c3 > 2.0, c4 > 3.5, c2 > 2.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1408 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 2, c1 > 1.5, c4 <= 11.5, c2 > 2.0, c3 > 3.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1608 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 > 2.0, c2 > 1.5, c3 <= 12.5, c4 > 4.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1623 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 1, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1625 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 1, c5 <= 8.5, c1 > 2.0, c2 <= 12.5, c4 > 2.5, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1669 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 4, c5 > 1.0, c3 > 2.0, c4 <= 12.0, c2 > 3.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1674 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 3, c2 <= 12.5, c3 <= 12.0, c1 > 2.0, c4 > 2.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1739 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 > 2.0, c5 <= 13, c4 > 2.0, c1 > 2.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1824 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 1, c1 > 2.0, c5 <= 11.0, c2 <= 11.0, c3 > 1.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1836 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 <= 12.0, c1 > 2.5, c2 <= 11.5, c3 > 3.5, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1940 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 4, c3 > 8.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2018 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 <= 10.5, c2 <= 12.5, c1 > 2.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2147 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 > 6.5, c2 > 2.5, c4 <= 13, c1 <= 12, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2339 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 <= 8.0, c1 > 2.0, c2 > 2.5, c4 > 2.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2496 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 1, c3 > 4.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2504 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 > 2.0, c4 > 3.0, c1 <= 12.0, c2 > 3.5, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2598 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 1, c1 > 1.5, c5 > 3.5, c2 > 1.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2687 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 > 1.5, c2 > 2.0, c1 <= 12.0, c4 <= 7.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2697 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 2, c5 <= 13, c2 > 2.0, c1 <= 13, c3 > 1.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2881 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 <= 10.0, c2 > 4.0, c5 > 3.5, c4 <= 12, c1 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3290 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 > 4.0, c1 > 2.0, c2 > 1.0, c3 > 5.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3510 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 <= 11.0, c4 > 2.5, c1 <= 10.0, c3 > 3.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3558 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 > 1.0, c1 > 2.0, c5 > 2.5, c3 > 5.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3747 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 <= 12.0, c3 > 4.5, c1 > 1.0, c2 > 1.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3896 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 > 4.5, c5 > 2.5, c3 > 2.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3959 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 4, c5 <= 12.0, c2 > 3.0, c1 > 1.5, c3 > 2.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3976 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 > 1.5, c1 > 2.0, c5 <= 11.0, c3 > 2.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4323 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 <= 11.0, c1 > 1.0, c2 > 2.0, c5 <= 11.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4676 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 1, c2 <= 10.0, c5 <= 12.5, c1 <= 13, c3 > 3.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4755 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 > 1.5, c3 <= 13, c2 > 3.0, c4 <= 11.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4814 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 3, c4 > 1.0, c2 > 1.0, c1 > 4.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4925 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 <= 12.5, c1 > 1.0, c3 > 1.0, c4 > 1.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5028 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 > 3.5, c3 > 3.0, c1 <= 13, c5 > 3.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5369 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 > 4.5, c1 > 1.0, c2 > 3.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5428 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c5 <= 12.5, c2 > 1.5, c1 <= 9.0, c4 > 3.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5461 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 <= 11.0, c1 > 1.0, c4 <= 13, c2 > 3.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5627 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 3, c3 <= 11.0, c1 > 1.5, c2 > 2.5, c4 > 1.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5690 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 4, c3 > 2.0, c5 > 1.5, c4 > 6.5, c2 > 3.0, c1 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5698 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 <= 7.5, c2 > 6.5, c4 > 4.5, c5 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5779 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.0, c2 > 8.5, c4 <= 12.5, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5933 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 2.0, c2 <= 12.0, c3 > 4.5, c4 > 1.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5978 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c1 <= 12, c2 <= 11.0, c3 > 2.5, c4 > 1.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6035 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c1 > 1.0, c4 > 1.5, c2 > 3.0, c3 > 1.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6127 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 4, c3 > 3.0, c4 <= 9.5, c2 <= 11.5, c1 <= 12.0, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6172 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 <= 7.0, c1 > 1.0, c2 > 1.0, c3 > 2.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6312 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 2, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6394 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 1.0, c3 <= 11.5, c5 <= 13, c2 <= 11.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6511 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c3 <= 12.5, c4 > 1.0, c1 <= 11.5, c2 > 1.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6567 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 2, c4 > 2.0, c3 > 2.0, c5 > 2.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6574 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 <= 9.5, c4 > 6.5, c1 <= 12.0, c2 <= 12.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6685 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 <= 9.5, c3 <= 13, c2 <= 9.0, c4 <= 10.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6698 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 1, c3 > 2.5, c1 <= 13, c5 <= 12, c4 <= 11.0, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6912 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 <= 12.0, c5 <= 10.0, c2 > 4.5, c4 <= 12, c1 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6967 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 2.0, c1 > 1.0, c4 <= 11.0, c2 > 5.0, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7185 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 > 1.0, c3 <= 11.5, c2 <= 12.0, c4 > 3.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7289 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 3, c2 > 1.5, c1 <= 12.0, c4 <= 13, c5 <= 12.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7364 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 4, c1 > 2.0, c3 > 3.0, c2 > 3.0, c5 <= 13, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7377 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 2, c5 > 1.5, c1 > 2.0, c2 > 1.0, c3 > 2.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7414 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 > 4.5, c1 > 2.5, c2 > 5.5, c5 > 3.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7479 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 4, c3 <= 11.5, c5 <= 13, c1 > 2.5, c2 > 2.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7487 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 3, c1 <= 13, c2 > 1.0, c3 > 1.5, c4 > 3.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7622 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 3, c1 > 1.0, c3 <= 13, c2 > 3.0, c4 <= 13, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7628 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 2, c4 <= 10.0, c3 > 2.5, c1 > 6.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7699 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 2, c5 <= 11, c1 > 3.0, c2 <= 12.0, c3 > 2.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7801 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 4, c3 > 1.0, c1 > 2.5, c2 > 1.5, c4 <= 10.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7946 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 > 5.0, c3 > 1.5, c5 <= 11.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7982 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 <= 10.0, c2 > 1.0, c3 > 1.0, c1 > 3.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8092 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 > 5.5, c1 > 2.0, c2 > 3.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8232 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 1, c5 > 4.0, c1 <= 13, c2 > 2.5, c3 <= 11.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8268 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 <= 11.0, c2 > 5.0, c5 <= 11.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8362 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 1, c1 <= 12.0, c2 > 1.0, c4 <= 10.0, c3 > 3.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8401 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 13, c1 <= 12.5, c4 <= 8.0, c2 <= 12.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8444 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c4 <= 13, c2 <= 12.0, c1 > 2.0, c3 > 3.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8460 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 > 2.0, c3 > 2.0, c4 > 2.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8516 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c5 > 4.5, c3 <= 13, c4 <= 12.5, c1 <= 7.5, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8598 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c4 <= 13, c1 > 2.0, c5 > 1.0, c2 > 1.0, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8706 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 4, c2 > 1.0, c5 > 2.0, c1 > 1.5, c3 > 2.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8827 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 4, c4 > 2.0, c1 > 1.0, c3 > 2.5, c5 <= 10.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8835 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 3, c5 <= 12.0, c3 > 2.5, c1 > 1.0, c2 <= 7.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8890 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 2, c2 > 1.0, c4 <= 12.0, c5 <= 9.0, c1 > 2.5, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8912 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 4, c4 <= 11.0, c5 > 2.0, c1 > 2.0, c2 > 1.5, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8985 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 1, c5 > 2.5, c1 <= 12.5, c4 > 1.5, c2 > 6.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9078 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 > 2.0, c1 <= 12.0, c3 <= 12.0, c5 <= 7.0, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9519 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 3, c2 > 1.5, c1 > 1.0, c4 <= 11.0, c5 <= 8.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9677 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 <= 11.0, c1 > 1.5, c4 > 1.5, c2 <= 12.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9724 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 1, c4 > 1.0, c2 > 1.5, c5 <= 6.0, c1 <= 13, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9946 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 > 1.0, c3 <= 11.0, c2 > 6.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10290 poker_hand = 0 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 4, c5 > 2.5, c4 > 2.0, c1 > 1.5, c2 > 2.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10425 poker_hand = 1 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 <= 10.0, c2 > 1.0, c5 > 5.0, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10473 poker_hand = 5 classifying 7.0 num of facts with rank:2.7988804478208716E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 1, c1 <= 11.0, c2 > 4.0, c3 <= 13, c4 <= 11.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#104 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 <= 11.0, c3 > 5.5, c4 > 3.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#172 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 3, c1 > 2.5, c2 > 7.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#191 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 1, c1 > 3.0, c2 > 1.5, c4 <= 10.5, c3 > 2.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#201 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 4, c1 > 1.5, c4 <= 11.5, c2 > 2.5, c5 > 4.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#275 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 4, c1 <= 11.0, c4 <= 12.0, c5 > 2.0, c2 <= 10.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#334 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 2, c1 > 2.5, c5 > 3.0, c2 > 2.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#434 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 4, c4 > 1.0, c3 > 2.0, c1 > 3.0, c2 > 8.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#667 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 > 1.5, c5 <= 6.5, c2 > 2.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#791 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 1, c1 > 2.5, c5 > 1.0, c2 <= 12.0, c3 <= 13, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#827 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 > 3.0, c1 > 4.5, c3 <= 10.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1000 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 1, c1 > 1.0, c2 > 1.0, c4 > 1.0, c3 > 1.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1046 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 > 6.0, c2 > 1.0, c3 <= 11.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1091 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 > 4.0, c1 > 1.5, c4 > 3.0, c3 > 2.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1099 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 <= 13, c2 <= 11.5, c3 > 1.0, c4 > 1.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1108 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 <= 11.0, c1 > 1.5, c5 <= 11.5, c3 <= 10.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1173 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 1, c1 > 1.5, c2 > 1.0, c3 > 1.0, c4 > 1.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1200 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 <= 6.5, c2 > 3.5, c1 > 2.0, c3 <= 10.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1228 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 4, c4 > 1.0, c2 <= 11.5, c5 > 6.5, c3 > 1.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1253 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 > 1.5, c1 <= 8.5, c4 > 1.0, c3 <= 11.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1283 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 > 5.0, c2 <= 11.5, c4 > 1.0, c3 <= 11.0, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1319 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 > 2.0, c3 > 4.0, c5 > 6.0, c1 > 4.5, c2 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1326 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 2, c2 <= 12.0, c3 > 1.0, c4 <= 11.5, c1 > 6.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1380 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 <= 11.0, c4 > 7.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1415 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 > 2.0, c4 > 1.0, c1 > 1.5, c2 > 1.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1463 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 <= 13, c1 <= 7.0, c5 > 2.0, c2 > 2.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1476 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 > 5.0, c1 > 2.5, c4 > 1.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1487 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 > 3.0, c5 <= 11.5, c1 <= 12, c3 > 3.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1545 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 2, c3 > 2.0, c5 <= 13, c1 > 4.0, c2 > 2.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1779 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 > 4.0, c4 > 5.5, c5 <= 9.5, c2 <= 10.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1886 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 2, c2 > 3.0, c5 > 2.0, c1 <= 12.5, c3 > 3.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1891 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 > 2.0, c5 <= 11.0, c1 > 1.0, c3 <= 13, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1937 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 1, c3 > 1.0, c5 > 4.5, c1 > 3.0, c2 > 2.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2058 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 > 4.0, c1 > 4.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2126 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 > 7.0, c1 <= 8.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2224 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 2, c1 <= 12.0, c2 > 1.0, c3 > 2.0, c4 > 1.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2240 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 4, c1 <= 12.0, c2 > 2.0, c3 > 1.5, c5 <= 12.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2364 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 > 2.0, c2 > 1.5, c5 <= 12.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2426 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 3, c3 > 3.0, c5 <= 12.0, c1 > 2.0, c2 > 3.0, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2473 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 <= 11.5, c4 <= 11.0, c1 <= 12.5, c5 > 1.5, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2521 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 > 4.0, c1 > 1.0, c2 <= 12.0, c3 <= 12.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2566 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 1, c4 > 1.0, c3 > 4.0, c1 > 3.0, c5 > 3.0, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2661 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 2, c5 > 2.0, c4 <= 12.0, c2 > 3.0, c1 > 3.0, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2778 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 > 2.0, c1 > 3.5, c2 > 2.0, c5 <= 13, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2792 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 > 4.0, c3 > 1.5, c4 <= 8.5, c5 > 2.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2820 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 3, c1 > 6.0, c4 > 4.0, c2 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3066 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 <= 11.0, c2 <= 11.0, c5 > 3.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3112 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 2, c1 <= 12.0, c5 > 2.0, c2 > 1.5, c3 > 1.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3156 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 <= 11.0, c1 > 1.5, c2 <= 10.5, c3 <= 9.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3259 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 > 1.5, c1 <= 12.5, c3 > 2.0, c2 <= 12.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3328 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 3, c2 <= 9.0, c1 > 5.5, c5 > 4.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3334 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 2, c2 <= 8.5, c5 > 1.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3339 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 1, c3 > 2.0, c5 > 2.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3373 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 > 5.0, c4 > 2.5, c2 > 1.5, c1 > 3.5, c3 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3418 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 2, c1 > 1.0, c4 > 2.0, c5 > 9.0, c2 > 3.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3570 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 2, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 > 1.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3591 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 > 2.5, c1 > 1.0, c4 <= 12, c3 <= 10.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3693 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 2, c2 > 1.5, c1 > 3.0, c3 <= 9.5, c4 > 1.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3733 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 2, c5 <= 10.5, c4 > 2.5, c1 <= 9.0, c2 > 2.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3770 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 2, c1 <= 13, c4 > 2.0, c3 <= 9.0, c2 <= 11.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3779 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 1, c2 > 1.0, c3 <= 9.0, c1 > 1.5, c5 > 3.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3784 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 > 2.0, c1 <= 12.0, c3 > 2.0, c5 > 1.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3888 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 <= 4.5, c4 > 2.0, c3 > 4.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3921 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 3, c1 <= 11.5, c3 > 1.5, c4 <= 12.5, c2 > 2.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3943 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 <= 10.0, c2 > 6.5, c5 <= 11.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3964 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 3, c2 > 2.0, c5 > 5.5, c1 <= 12.0, c3 > 1.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3968 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 3, c2 > 2.0, c5 <= 5.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4074 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 1, c2 > 2.0, c1 <= 13, c3 > 2.0, c4 <= 11.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4391 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 > 5.5, c2 <= 12.0, c1 > 1.0, c4 > 1.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4425 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 13, c4 > 2.5, c5 > 2.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4442 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 <= 9.5, c1 > 1.5, c2 <= 11.0, c5 <= 11.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4709 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 <= 11.0, c1 > 2.0, c2 <= 11.0, c3 > 2.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4829 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 <= 10.0, c5 > 1.0, c3 > 10.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4926 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 <= 12.5, c1 > 1.0, c3 > 1.0, c4 > 1.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4976 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 4, c1 > 4.0, c4 <= 12.5, c2 <= 11.0, c3 > 2.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5061 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 4, c1 > 2.0, c2 > 1.5, c3 <= 13, c4 > 2.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5116 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 2, c1 <= 11.5, c2 > 1.0, c5 > 2.0, c3 <= 12.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5127 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 <= 9.5, c5 > 3.0, c4 <= 13, c1 > 6.0, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5137 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 4, c4 > 1.0, c1 > 2.5, c3 > 2.5, c5 <= 6.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5152 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 1.0, c3 <= 11.0, c4 > 1.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5188 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 <= 12.5, c2 > 2.5, c3 <= 11.5, c5 > 4.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5416 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c3 > 1.5, c4 <= 13, c1 > 2.0, c2 > 3.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5494 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c4 <= 12.0, c5 > 11.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5529 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 > 1.0, c4 <= 10.5, c1 > 2.0, c5 > 1.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5674 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 2, c3 <= 12.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5718 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 1, c2 > 1.0, c5 <= 9.0, c1 > 2.5, c3 > 4.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5750 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 > 7.5, c2 > 1.0, c3 > 6.5, c4 > 2.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5778 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.0, c2 <= 8.5, c1 > 2.0, c3 > 2.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5809 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 9.5, c1 > 3.0, c2 > 2.0, c3 > 3.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5822 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c3 > 2.0, c1 > 3.0, c2 > 2.0, c4 > 2.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5849 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 5.0, c3 > 1.0, c1 > 1.5, c2 <= 10.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6082 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 1, c3 <= 12.0, c1 > 2.5, c4 <= 11.5, c2 > 3.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6115 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 <= 12.5, c5 > 3.0, c1 > 2.0, c2 <= 10.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6136 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 3, c1 > 1.5, c2 <= 11, c3 <= 10.0, c4 > 2.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6211 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 4, c1 <= 12.0, c5 > 3.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6263 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 <= 7.5, c2 <= 13, c3 > 4.5, c1 <= 12.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6346 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 <= 7.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6354 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 <= 10.0, c4 <= 12.5, c1 <= 10.5, c2 > 3.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6407 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 <= 10.0, c2 > 2.0, c5 <= 12.0, c1 > 3.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6448 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 <= 13, c3 <= 8.0, c2 > 1.5, c1 <= 13, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6466 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 <= 10.0, c1 <= 12.5, c3 > 1.0, c5 <= 12.0, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6627 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 <= 12.0, c4 > 1.5, c3 > 7.0, c1 <= 13, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6709 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 > 3.0, c3 > 1.0, c1 > 2.5, c2 > 1.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6816 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c5 > 1.5, c3 > 3.0, c2 > 4.0, c1 > 1.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6848 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c3 > 1.5, c4 > 2.5, c1 > 1.5, c2 > 3.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6953 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 > 4.0, c2 > 2.0, c3 <= 10.5, c1 > 1.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6957 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c2 <= 5.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6976 poker_hand = 5 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c3 <= 11.5, c1 > 1.0, c4 <= 12.0, c2 <= 13, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#7008 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c2 <= 11.5, c1 > 2.0, c3 > 2.5, c4 > 3.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7024 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c4 > 5.0, c2 > 2.0, c1 > 3.0, c3 > 4.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7130 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 > 3.0, c1 > 3.0, c5 > 3.0, c3 <= 9.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7161 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 <= 11.0, c5 > 2.0, c1 > 2.5, c2 <= 13, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7234 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 > 3.5, c1 > 1.0, c2 > 1.5, c4 > 5.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7258 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 <= 11.0, c5 > 1.0, c4 > 1.5, c2 <= 13, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7267 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 <= 10.0, c5 <= 8.5, c1 > 8.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7450 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 3, c1 > 1.0, c2 > 1.0, c3 > 1.5, c4 > 2.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7469 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 1, c1 <= 13, c2 > 2.5, c5 > 8.5, c4 <= 11, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7979 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 > 5.0, c4 > 4.0, c3 > 4.0, c1 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8015 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 <= 9.5, c2 > 3.0, c3 > 1.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8041 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 > 4.0, c1 > 1.0, c4 <= 10.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8189 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 1.5, c5 > 2.0, c1 <= 10.5, c2 > 3.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8238 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 <= 5.5, c4 <= 8.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8322 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 > 3.5, c3 <= 9.0, c1 <= 6.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8501 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 > 2.0, c5 <= 6.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8739 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 > 2.0, c4 > 3.0, c1 <= 9.5, c2 > 2.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8768 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 2, c3 > 2.0, c4 > 1.0, c1 > 7.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8935 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 2, c5 > 2.5, c1 <= 12.0, c2 <= 13, c3 <= 12, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8949 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 4, c1 <= 10.0, c2 > 2.0, c3 > 2.0, c4 > 3.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9042 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c3 <= 11.5, c1 > 3.0, c2 > 2.5, c4 <= 10.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9073 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c2 > 5.0, c4 <= 12.0, c5 > 3.0, c1 > 2.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9092 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 <= 10.5, c2 > 4.0, c3 > 3.0, c4 > 3.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9458 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 > 4.5, c2 <= 11.5, c1 > 2.0, c3 > 4.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9531 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 2, c2 > 4.0, c5 > 2.5, c3 > 1.0, c1 > 3.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9605 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 <= 4.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9632 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 3, c1 <= 4.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9915 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 > 4.5, c5 <= 12.5, c4 > 5.0, c1 <= 12.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10005 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 <= 11.0, c1 <= 12.5, c2 <= 9.5, c3 <= 10.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10016 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 3, c2 > 1.0, c1 <= 13, c3 <= 9.0, c4 > 1.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10070 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 <= 11.5, c1 <= 13, c3 > 1.5, c2 <= 10.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10112 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 1, c5 <= 9.0, c2 > 1.5, c3 <= 9.0, c4 > 2.0, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10132 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 3, c2 <= 11.5, c1 > 1.0, c3 <= 13, c4 <= 13, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10196 poker_hand = 1 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 > 7.0, c2 > 1.0, c4 <= 12.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10232 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 > 8.0, c2 > 2.0, c4 <= 10.5, c1 <= 9.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10246 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 > 4.0, c1 <= 9.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10309 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 2, c1 > 5.0, c2 <= 11.0, c3 > 2.5, c4 <= 8.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10334 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 <= 12.5, c2 > 3.0, c4 <= 12.0, c3 <= 10.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10348 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 <= 12.0, c4 > 5.0, c1 <= 12.5, c2 > 3.0, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10377 poker_hand = 0 classifying 6.0 num of facts with rank:2.3990403838464614E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 > 8.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#42 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 3, c1 > 4.5, c4 <= 8.5, c2 <= 13, c3 <= 12.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#79 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 3, c5 > 2.0, c2 > 6.0, c1 > 3.5, c3 > 3.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#119 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 > 4.5, c4 > 2.0, c3 > 4.0, c1 > 3.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#212 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 3, c5 <= 13, c2 > 3.5, c1 > 4.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#232 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 > 7.0, c4 > 2.0, c5 > 5.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#305 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 <= 12.5, c2 > 2.0, c4 > 2.0, c3 > 7.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#323 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 3, c2 > 1.0, c1 > 3.0, c3 > 2.0, c4 <= 12.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#396 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 3, c3 <= 12, c4 > 1.0, c1 > 2.0, c2 > 1.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#436 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 4, c4 > 1.0, c3 > 2.0, c1 > 3.0, c2 <= 8.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#515 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 3, c1 <= 12.5, c5 > 2.5, c4 > 1.0, c2 > 3.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#629 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 1, c2 <= 11.5, c1 > 1.0, c3 > 4.5, c4 > 4.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#650 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 3, c5 <= 13, c3 <= 10.0, c2 <= 8.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#726 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 3, c2 > 3.5, c4 > 3.0, c5 > 3.5, c3 > 7.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#754 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 > 3.0, c4 <= 11.5, c3 <= 11.5, c2 > 4.5, c1 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#782 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 > 4.0, c4 > 5.0, c3 <= 10.0, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#839 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 <= 11.0, c4 > 1.5, c3 > 5.0, c1 <= 12, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#907 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 > 5.5, c3 > 1.5, c4 <= 8.5, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#974 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 <= 9.5, c2 > 1.0, c1 <= 10.0, c4 <= 10.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1026 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 3, c3 <= 5.5, c4 <= 9.0, c1 <= 10.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1057 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 > 4.5, c5 <= 10.0, c2 > 3.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1078 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 2, c1 > 2.5, c3 <= 13, c2 > 3.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1080 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 2, c1 > 2.5, c3 <= 13, c2 > 3.5, c4 > 3.0, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1141 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 <= 10.0, c5 > 1.0, c1 > 1.5, c2 <= 13, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1148 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 <= 9.0, c3 > 2.0, c4 > 1.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1210 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 > 6.5, c5 > 1.5, c3 > 3.0, c1 > 4.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1245 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 <= 11.5, c3 <= 11.0, c5 <= 11.0, c1 > 4.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1302 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 > 5.0, c3 <= 8.0, c5 > 4.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1352 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 3, c4 > 3.5, c1 > 2.5, c5 > 3.5, c2 > 1.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1381 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 <= 11.0, c4 <= 7.0, c3 <= 12.5, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1443 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 > 3.0, c2 <= 12.5, c1 > 3.0, c3 > 2.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1544 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 2, c3 > 2.0, c5 <= 13, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1569 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 3, c1 > 1.0, c2 > 1.5, c3 <= 12.0, c5 > 12.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1592 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 > 3.0, c2 <= 12.5, c3 > 6.0, c1 <= 10.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1597 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 4, c5 > 3.0, c2 > 2.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1599 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 4, c5 > 3.0, c2 > 2.0, c3 > 3.0, c1 > 1.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1827 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 1, c1 > 2.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1879 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 > 2.0, c5 <= 11.5, c3 > 6.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1907 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 4, c3 <= 10, c5 <= 12, c4 <= 7.0, c1 > 2.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1928 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 > 4.0, c1 > 3.0, c2 > 6.5, c5 <= 12.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1930 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 4.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2005 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 <= 6.5, c4 > 1.0, c2 > 3.0, c1 > 9.0, c5 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2038 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 <= 4.0, c3 > 2.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2112 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 1, c5 > 4.0, c3 <= 11.0, c4 > 2.5, c1 > 1.0, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2149 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 > 7.0, c4 > 2.0, c3 > 1.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2174 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 3, c1 > 2.0, c5 <= 9.5, c2 > 3.5, c3 > 2.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2349 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 2, c2 > 1.0, c3 > 1.0, c4 <= 10.5, c5 <= 11, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2397 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 <= 8.0, c4 <= 12.5, c2 <= 9.5, c3 <= 13, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2465 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 4, c1 <= 10.5, c5 > 3.5, c2 > 4.0, c4 > 2.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2472 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 <= 11.5, c4 <= 11.0, c1 <= 12.5, c5 > 1.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2624 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 2, c3 <= 10.5, c5 <= 12.5, c2 > 2.0, c4 <= 11.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2652 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 3, c1 <= 12.5, c3 <= 11.5, c4 <= 6.5, c2 > 2.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2698 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 2, c5 <= 13, c2 > 2.0, c1 <= 13, c3 > 1.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2839 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 1, c1 > 1.5, c4 <= 9.0, c3 <= 13, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2878 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 <= 10.0, c2 > 4.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2890 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 <= 9.0, c3 > 2.5, c4 > 1.0, c2 > 5.0, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2909 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 > 4.0, c2 <= 12, c1 <= 9.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2945 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 > 2.0, c4 > 3.5, c2 > 4.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2951 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 2, c1 > 2.0, c5 > 1.5, c2 <= 8.5, c3 <= 11.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3002 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 <= 7.5, c1 > 1.0, c5 > 1.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3130 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 > 6.5, c2 > 1.5, c5 > 1.5, c1 > 2.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3210 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 <= 10.5, c2 > 3.0, c3 > 1.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3274 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 > 4.0, c1 > 2.5, c3 <= 9.5, c4 > 5.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3315 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 > 8.0, c1 > 1.5, c2 > 1.0, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3322 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 4, c1 > 4.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3325 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 4, c1 > 4.0, c4 > 4.0, c3 > 3.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3408 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 <= 11.5, c1 > 2.5, c4 > 1.0, c5 > 5.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3428 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 > 2.0, c3 > 4.0, c1 > 2.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3441 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 > 6.5, c4 > 5.0, c2 > 8.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3450 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 > 8.0, c3 > 1.0, c5 > 2.0, c1 > 2.0, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3525 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 2, c2 > 3.0, c3 > 2.5, c4 <= 10.0, c1 > 2.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3578 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 > 2.0, c3 > 5.0, c1 > 1.0, c2 <= 13, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3689 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 > 7.5, c4 > 3.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3714 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 <= 8.0, c4 > 3.0, c5 <= 4.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3716 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 <= 8.0, c4 > 3.0, c5 > 4.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3771 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 2, c1 <= 13, c4 > 2.0, c3 > 9.0, c2 <= 10.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3824 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 <= 9.0, c1 > 4.5, c3 > 4.0, c4 > 2.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3846 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 2, c1 > 1.5, c3 > 4.0, c5 > 2.0, c4 > 3.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3903 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 > 3.0, c4 <= 9.0, c1 > 8.0, c2 > 2.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3913 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 > 1.0, c3 > 2.0, c2 > 4.0, c5 > 3.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3914 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 > 1.0, c3 > 2.0, c2 > 4.0, c5 > 3.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3928 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 <= 8.0, c3 > 5.0, c2 <= 11.5, c5 <= 12.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4031 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 9.0, c1 > 3.5, c3 <= 12, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4062 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 <= 11.0, c2 <= 12.0, c3 > 2.5, c4 <= 12.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4098 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 > 5.0, c4 > 1.0, c3 <= 9.0, c1 > 2.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4113 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 > 2.0, c5 <= 9.5, c1 <= 10.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4140 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c1 > 3.5, c2 > 3.0, c3 <= 10.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4157 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c2 > 3.5, c4 <= 9.5, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4189 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 2.0, c1 <= 12, c2 > 1.5, c4 > 1.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4217 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 <= 12.5, c5 > 2.0, c2 > 3.0, c3 > 3.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4235 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c1 <= 10.0, c4 > 1.5, c2 > 2.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4333 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 <= 6.0, c1 > 5.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4435 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 1.5, c5 <= 13, c1 <= 11.0, c3 > 1.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4492 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c4 <= 11.0, c3 > 1.0, c1 > 4.0, c2 > 2.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4499 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c4 > 11.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4557 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 <= 6.0, c4 > 1.0, c1 > 6.0, c2 > 1.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4602 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 4, c3 > 2.5, c1 <= 8.5, c4 <= 12.0, c2 > 1.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4647 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 <= 4.5, c1 <= 12.0, c2 <= 13, c3 <= 13, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4721 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 <= 11.0, c1 > 1.0, c4 <= 4.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4724 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 <= 11.0, c1 > 1.0, c4 > 4.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4906 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 > 3.0, c1 <= 9.5, c2 > 3.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4917 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 <= 6.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4948 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 > 8.0, c4 > 2.5, c3 > 3.0, c1 > 4.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4998 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 > 1.5, c1 <= 8.0, c4 <= 13, c5 <= 12, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5004 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 > 1.5, c1 > 8.0, c5 > 5.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5048 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 1, c5 > 1.0, c2 <= 9.0, c1 <= 11.0, c3 > 2.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5067 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 3, c1 <= 6.5, c2 > 3.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5100 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 > 5.0, c2 <= 11.5, c5 > 4.5, c3 > 5.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5102 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 <= 10.0, c1 > 3.5, c2 <= 11.5, c5 > 5.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5146 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 > 3.0, c2 > 4.5, c3 <= 12.5, c5 > 2.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5226 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 <= 11.5, c4 > 3.0, c5 <= 9.5, c2 <= 12.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5254 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c3 > 1.0, c2 > 6.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5372 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 <= 4.5, c2 <= 8.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5492 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c4 <= 12.0, c5 <= 11.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5503 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 <= 13, c3 <= 10.0, c5 <= 13, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5512 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 <= 8.0, c5 <= 12.0, c1 > 2.0, c2 > 3.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5550 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 <= 13, c2 > 1.5, c4 > 4.0, c5 > 2.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5605 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 1, c2 <= 12.5, c1 > 2.5, c3 > 3.0, c4 <= 11.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5606 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 1, c2 <= 12.5, c1 > 2.5, c3 > 3.0, c4 <= 11.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5721 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 1, c2 > 1.0, c5 > 9.0, c1 <= 12, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5805 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 9.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5901 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 > 4.0, c4 > 2.5, c3 <= 9.5, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5964 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 <= 8.0, c2 <= 12.0, c1 > 5.0, c3 > 4.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6016 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 > 1.0, c3 <= 12.5, c4 > 1.5, c5 > 1.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6043 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c4 > 2.0, c1 > 2.5, c2 > 2.5, c3 > 3.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6105 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 <= 6.5, c1 <= 10.5, c2 <= 13, c3 > 1.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6367 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 <= 8.0, c5 <= 13, c2 <= 13, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6421 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 <= 6.0, c1 > 1.5, c2 <= 11.5, c4 > 1.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6447 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 <= 13, c3 <= 8.0, c2 > 1.5, c1 <= 13, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6488 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 9.0, c3 <= 11.5, c2 > 6.0, c4 > 5.5, c5 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6520 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c4 <= 12.5, c1 > 1.5, c2 > 2.0, c3 <= 11.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6553 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 <= 6.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6695 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 1, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6710 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 > 3.0, c3 > 1.0, c1 > 2.5, c2 > 1.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6714 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c3 <= 4.0, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6786 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c1 > 1.5, c5 > 1.5, c3 > 3.0, c4 > 3.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6831 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 <= 7.5, c4 > 2.0, c5 <= 9.0, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6846 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c3 > 1.5, c4 > 2.5, c1 > 1.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7014 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c1 > 3.5, c2 > 3.5, c4 <= 8.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7050 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c4 <= 11.0, c3 <= 12.0, c5 > 9.5, c1 <= 9.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7070 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c5 > 1.5, c3 <= 12.5, c1 <= 11.0, c2 <= 4.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7072 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c5 > 1.5, c3 <= 12.5, c1 <= 11.0, c2 > 4.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7156 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 > 4.0, c4 > 3.0, c1 <= 10.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7236 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 > 8.5, c2 <= 8.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7283 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 4, c5 <= 13, c1 > 3.5, c4 <= 12, c3 <= 7.5, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7312 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 > 1.0, c2 > 1.5, c3 > 2.5, c4 <= 11.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7313 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 > 1.0, c2 > 1.5, c3 > 2.5, c4 <= 11.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7369 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 3, c5 > 1.5, c2 > 3.0, c1 <= 11.0, c3 <= 10.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7404 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 <= 5.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7422 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 2, c5 <= 11.5, c1 <= 10.5, c2 > 2.5, c3 > 2.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7434 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 <= 11.0, c2 <= 11.5, c3 > 2.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7542 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 2, c5 > 2.0, c3 <= 13, c1 > 3.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7544 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 2, c5 > 2.0, c3 <= 13, c1 > 3.0, c2 > 4.0, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7559 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 > 9.5, c5 > 1.5, c4 > 3.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7591 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 <= 10.0, c1 > 1.0, c4 > 2.0, c3 > 4.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7713 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 4, c5 > 3.0, c2 <= 11.5, c1 <= 10.5, c3 <= 11.5, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7731 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 <= 6.5, c5 <= 10.5, c4 <= 8.5, c3 > 3.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7755 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 > 2.5, c4 <= 13, c1 <= 11.0, c2 > 3.5, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7778 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 > 1.0, c1 > 1.0, c2 <= 8.0, c3 <= 10.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7815 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 > 11.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7910 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 12.0, c3 > 2.0, c4 > 2.0, c2 > 2.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7911 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 12.0, c3 > 2.0, c4 > 2.0, c2 > 2.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7972 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 <= 5.0, c3 > 1.5, c4 <= 9.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8011 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c1 <= 11.5, c5 > 3.5, c2 > 1.5, c3 > 2.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8052 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c2 > 1.0, c5 <= 12.0, c4 <= 9.5, c3 <= 10.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8069 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 <= 12.0, c3 <= 12.5, c4 > 3.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8086 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 <= 7.0, c1 <= 12.5, c2 <= 12, c3 > 1.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8168 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 <= 10.0, c1 > 1.0, c5 > 1.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8176 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8180 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c5 > 1.5, c3 > 1.0, c1 <= 11.0, c4 <= 13, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8291 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 > 4.5, c2 > 1.0, c4 <= 11.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8303 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 3, c4 > 4.5, c3 > 3.5, c1 <= 12, c5 <= 10.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8341 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 <= 10.0, c1 > 3.0, c2 <= 13, c4 > 2.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8414 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c5 > 2.0, c2 > 2.5, c1 <= 9, c3 <= 11.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8436 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c1 > 1.0, c4 <= 12.0, c2 > 4.0, c3 > 4.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8623 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 <= 12.5, c3 <= 11.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8627 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 <= 12.5, c3 <= 11.5, c5 > 3.5, c1 <= 13, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8663 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c4 <= 11.5, c5 <= 11.0, c1 <= 12.0, c2 > 5.5, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8766 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 2, c3 > 2.0, c4 > 1.0, c1 <= 7.5, c2 <= 11.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8840 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 3, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8873 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 > 2.5, c1 <= 12.5, c2 > 2.0, c4 > 2.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8882 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 > 3.5, c3 <= 11.5, c4 <= 10.0, c1 > 2.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8943 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 1, c2 > 1.5, c5 <= 10.5, c3 > 4.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8959 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 3, c3 <= 4.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8975 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 > 5.0, c2 <= 11.0, c4 > 3.5, c3 > 4.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8982 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 1, c5 > 2.5, c1 <= 12.5, c4 > 1.5, c2 <= 6.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9004 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 > 8.0, c1 <= 12.5, c2 > 3.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9030 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 > 4.0, c4 > 5.5, c2 > 1.0, c1 > 5.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9049 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c2 <= 13, c3 <= 10.0, c4 > 1.0, c1 > 5.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9156 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 7.0, c2 > 4.5, c4 > 1.0, c5 > 3.5, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9266 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 <= 11.0, c4 > 1.5, c1 <= 12.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9309 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 <= 13, c1 > 10.0, c2 > 2.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9337 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 > 1.0, c4 > 8.0, c1 > 3.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9359 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 <= 11.5, c1 > 2.0, c3 > 2.5, c4 <= 11.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9367 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 <= 10.5, c4 > 1.5, c2 <= 7.5, c5 > 4.5, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9370 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 <= 10.5, c4 > 1.5, c2 > 7.5, c1 > 5.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9381 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 <= 10.5, c1 <= 13, c4 > 2.5, c2 <= 11.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9479 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 <= 6.5, c3 > 4.0, c2 > 5.0, c4 > 2.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9550 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 > 1.0, c2 <= 9.0, c5 > 4.0, c4 > 4.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9551 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 > 1.0, c2 > 9.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9570 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 2, c4 <= 13, c2 <= 9.5, c1 > 2.5, c5 > 4.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9597 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 3, c1 > 3.0, c5 <= 10.5, c4 > 3.0, c2 > 1.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9618 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 1, c2 > 5.0, c1 > 2.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9749 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 2, c2 > 1.5, c1 > 1.5, c3 > 1.0, c4 <= 4.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9754 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 <= 5.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9782 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 3, c1 > 1.5, c2 > 3.0, c3 <= 13, c4 > 4.5, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9868 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 <= 10.5, c2 <= 12.5, c1 > 9.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9983 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 3, c3 <= 8.0, c1 > 2.0, c2 <= 9.5, c4 <= 11.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9999 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 1, c3 > 3.0, c2 <= 12, c5 <= 10.0, c4 > 1.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10039 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 1, c4 <= 11.0, c5 > 2.0, c1 > 3.5, c2 <= 11.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10076 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 <= 9.0, c2 > 2.0, c4 > 7.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10090 poker_hand = 1 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 4, c1 > 2.0, c5 > 2.0, c2 > 5.0, c3 > 3.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10096 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 3, c5 > 4.0, c4 <= 9.5, c3 > 3.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10151 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 1, c4 <= 7.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10253 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 3, c4 <= 12.0, c1 > 2.0, c5 <= 10.5, c3 > 2.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10421 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 4, c2 > 2.0, c1 > 3.0, c3 > 1.5, c4 > 2.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10458 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 3, c4 > 3.0, c1 > 3.0, c5 > 8.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10469 poker_hand = 0 classifying 5.0 num of facts with rank:1.9992003198720512E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 2, c1 > 5.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 3, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#13 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 3, c4 > 3.0, c1 > 9.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#57 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 <= 7.0, c5 > 4.0, c2 > 2.0, c3 > 2.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#64 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 <= 11.0, c4 > 2.5, c2 <= 9.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#132 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 > 5.0, c1 > 4.5, c4 <= 9.0, c3 <= 8.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#170 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 3, c1 > 2.5, c2 <= 7.5, c3 <= 13, c5 > 2.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#187 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 <= 7.0, c3 > 3.5, c1 > 3.5, c2 > 5.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#226 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 1, c1 <= 11.5, c5 > 4.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#252 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 > 5.0, c3 > 1.0, c2 > 1.0, c1 > 6.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#257 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 <= 6.0, c1 <= 9.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#262 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 > 6.0, c1 <= 8.5, c2 > 2.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#303 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 <= 12.5, c2 > 2.0, c4 > 2.0, c3 <= 7.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#380 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 1, c1 > 1.0, c3 > 1.5, c4 <= 10.0, c5 <= 7.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#414 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 > 9.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#444 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 3, c3 > 1.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#492 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 <= 11.5, c4 <= 11, c5 > 6.0, c3 <= 12.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#499 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 1, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#528 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 <= 6.5, c1 > 5.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#582 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 <= 8.5, c4 > 7.0, c1 > 1.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#596 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 > 4.0, c5 > 5.5, c1 <= 9.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#605 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 <= 6.5, c1 > 1.5, c4 <= 11.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#617 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 2, c5 <= 11.5, c4 > 1.0, c2 <= 6.5, c1 <= 8.0, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#628 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 1, c2 <= 11.5, c1 > 1.0, c3 > 4.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#681 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 > 3.0, c4 > 4.0, c2 <= 7.5, c5 > 4.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#693 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 3, c3 > 3.5, c2 <= 12.5, c5 > 10.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#714 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 4, c4 > 1.0, c3 > 2.0, c5 <= 12.5, c1 > 2.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#718 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 4, c4 > 1.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#727 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 3, c2 > 3.5, c4 > 3.0, c5 > 3.5, c3 > 7.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#729 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 3, c2 > 3.5, c4 > 3.0, c5 > 3.5, c3 <= 7.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#743 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 <= 8.5, c1 > 9.0, c2 <= 10.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#752 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 > 3.0, c4 <= 11.5, c3 <= 11.5, c2 <= 4.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#806 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 <= 9.0, c1 > 2.0, c3 > 2.5, c4 <= 12.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#820 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 2, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#951 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 12.5, c2 <= 11.5, c4 <= 11.0, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#965 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 > 5.0, c1 > 2.0, c3 > 1.0, c5 <= 10.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#999 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 1, c1 > 1.0, c2 > 1.0, c4 > 1.0, c3 > 1.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1039 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 > 8.0, c2 <= 13, c3 > 5.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1040 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1167 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 > 4.5, c3 > 4.0, c4 > 1.5, c2 > 1.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1168 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 > 4.5, c3 > 4.0, c4 > 1.5, c2 > 1.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1184 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 > 2.0, c2 > 1.5, c5 <= 10.5, c3 > 4.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1212 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 > 2.0, c3 <= 9.0, c4 <= 9.0, c1 <= 8.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1214 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 > 2.0, c3 <= 9.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1272 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 <= 7.0, c1 > 7.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1323 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 2, c2 <= 12.0, c3 > 1.0, c4 <= 11.5, c1 <= 6.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1360 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 > 3.0, c4 > 2.0, c3 > 3.0, c1 > 2.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1361 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 > 3.0, c4 > 2.0, c3 > 3.0, c1 > 2.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1394 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 <= 12.0, c5 > 9.5, c1 > 2.0, c2 <= 10.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1414 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 > 2.0, c4 > 1.0, c1 > 1.5, c2 > 1.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1488 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 > 7.0, c3 <= 12.0, c1 <= 10, c5 <= 9.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1541 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 > 4.0, c5 > 4.0, c2 > 3.0, c3 > 4.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1547 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 2, c3 > 2.0, c5 <= 13, c1 > 4.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1564 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 > 9.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1567 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 3, c1 > 1.0, c2 > 1.5, c3 <= 12.0, c5 <= 12.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1589 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 > 3.0, c2 <= 12.5, c3 <= 6.0, c1 > 2.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1596 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 4, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1621 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 2, c1 > 2.5, c3 <= 10.0, c2 > 3.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1622 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 2, c1 > 2.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1645 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 3, c4 > 2.0, c5 <= 12.0, c3 > 5.0, c1 > 4.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1653 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 2, c5 > 1.0, c3 <= 11.5, c2 <= 11.0, c1 > 6.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1654 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 2, c5 > 1.0, c3 <= 11.5, c2 <= 11.0, c1 > 6.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1664 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 1, c1 > 2.5, c5 > 3.0, c3 <= 11.0, c2 <= 13, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1667 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 4, c5 > 1.0, c3 > 2.0, c4 <= 12.0, c2 <= 3.0, c1 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1690 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 > 6.0, c1 > 3.0, c4 <= 9.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1733 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 2, c1 <= 10.5, c2 > 3.0, c5 > 4.0, c4 > 3.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1753 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 4, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1762 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 <= 8.0, c3 > 2.0, c4 <= 6.5, c1 > 2.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1786 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 > 7.0, c4 <= 9.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1802 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 > 7.0, c1 > 1.5, c4 > 1.5, c3 > 6.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1803 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 <= 7.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1804 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 <= 7.0, c1 <= 11.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1813 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 > 2.0, c4 > 7.0, c5 > 1.5, c1 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1841 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 3, c3 <= 9.5, c5 > 1.0, c1 > 1.5, c2 <= 12.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1842 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 3, c3 <= 9.5, c5 > 1.0, c1 > 1.5, c2 <= 12.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1848 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 2, c4 > 1.0, c1 > 1.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1877 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 > 2.0, c5 <= 11.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1943 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 4, c3 <= 8.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1947 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 <= 10.5, c2 > 2.5, c1 <= 9.5, c5 <= 11.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1962 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 2, c3 > 2.5, c4 <= 8.5, c1 <= 12, c2 > 5.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1964 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 2, c3 > 2.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1967 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 > 1.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2023 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 > 10.5, c1 > 1.0, c2 <= 10.5, c3 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2027 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 > 10.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2070 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 > 6.0, c2 > 1.0, c5 > 7.5, c3 > 2.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2090 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 > 3.5, c3 <= 10.0, c4 <= 11.0, c2 > 5.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2122 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 4, c3 > 1.0, c1 > 4.5, c2 <= 12.0, c4 > 3.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2273 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 <= 7.0, c4 <= 12.5, c2 > 1.5, c3 > 4.5, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2277 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 <= 6.5, c5 > 3.0, c1 > 3.5, c2 > 2.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2291 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 <= 6.0, c2 <= 9.5, c1 <= 9.0, c5 <= 4.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2296 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 > 6.0, c1 <= 10.0, c2 <= 10.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2298 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 > 6.0, c1 <= 10.0, c2 <= 10.5, c3 > 5.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2310 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 <= 11.5, c2 > 1.0, c3 > 4.0, c4 <= 9.0, c1 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2313 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 <= 11.5, c2 > 1.0, c3 > 4.0, c4 > 9.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2357 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 <= 3.5, c3 <= 10.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2378 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 3, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2392 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 2, c2 <= 12.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2467 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 4, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2487 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 > 6.5, c3 <= 12.0, c1 > 2.5, c2 > 1.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2536 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 > 1.0, c5 <= 12.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2594 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 1, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2640 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 > 8.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2679 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 4, c4 > 3.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2680 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 4, c4 > 3.0, c1 > 3.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2711 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 > 1.5, c4 > 6.5, c3 > 1.0, c1 > 2.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2732 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 <= 11.5, c1 > 8.5, c3 > 2.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2755 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 <= 6.0, c2 > 4.5, c3 <= 9.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2768 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 > 1.0, c4 > 7.5, c1 <= 13, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2810 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 > 6.0, c5 <= 8.0, c1 > 5.0, c3 > 1.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2812 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 > 6.0, c5 > 8.0, c2 <= 8.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2832 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 <= 7.0, c1 > 2.0, c3 > 5.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2842 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 1, c1 > 1.5, c4 > 9.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2855 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 3, c4 > 3.0, c1 <= 12.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2870 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 1, c4 <= 13, c2 <= 11.0, c5 <= 13, c1 <= 9.0, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2872 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 1, c4 <= 13, c2 <= 11.0, c5 <= 13, c1 > 9.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2886 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 > 10.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2903 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 <= 4.0, c1 > 4.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2915 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 <= 9.0, c2 <= 12.5, c1 > 6.5, c4 > 6.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2964 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 4, c3 <= 8.0, c1 > 3.0, c2 <= 11.0, c4 > 4.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2976 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 > 3.5, c1 > 8.5, c2 > 3.0, c3 <= 11.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3031 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 > 3.5, c4 <= 9.5, c1 > 1.5, c3 > 3.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3042 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 <= 11.0, c1 > 1.5, c3 > 1.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3110 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 > 4.0, c5 > 5.0, c1 <= 8.0, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3131 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 > 6.5, c2 > 1.5, c5 > 1.5, c1 > 2.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3152 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 > 6.5, c2 > 1.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3202 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 > 3.0, c3 <= 4.5, c1 <= 11.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3228 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 <= 8.5, c3 > 3.5, c2 > 1.0, c1 <= 5.5, c4 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3234 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 <= 8.0, c2 > 3.0, c5 <= 9.5, c1 > 5.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3240 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 <= 8.0, c2 > 3.0, c5 > 9.5, c1 > 3.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3242 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 > 8.0, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3247 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 > 1.0, c2 > 10.0, c4 <= 8.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3250 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 > 1.0, c2 > 10.0, c4 > 8.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3267 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 <= 4.0, c4 <= 12.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3289 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 <= 4.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3307 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 <= 8.0, c5 <= 12.0, c1 <= 11.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3333 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 2, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3337 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 2, c2 <= 8.5, c5 > 1.0, c4 > 6.0, c1 > 2.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3349 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 > 2.0, c5 <= 11.0, c2 <= 7.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3389 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 1, c5 <= 10.5, c1 <= 13, c2 <= 12.5, c4 > 3.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3392 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 1, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3402 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3447 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 <= 8.0, c5 > 1.0, c3 > 3.5, c2 > 4.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3463 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 2, c2 > 2.5, c1 > 2.5, c3 > 2.0, c4 > 5.0, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3481 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 4, c1 <= 13, c2 > 3.5, c4 > 2.0, c3 > 3.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3494 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 2, c5 > 2.5, c1 > 1.5, c4 > 2.0, c2 > 3.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3500 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 1, c2 > 2.0, c3 <= 12.0, c1 > 3.0, c4 > 5.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3533 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 <= 8.0, c1 > 3.0, c4 > 2.0, c2 <= 12.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3549 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 > 5.0, c1 > 2.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3605 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 > 2.5, c4 <= 11.0, c3 <= 10.5, c5 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3663 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 > 2.0, c4 > 3.0, c3 > 12.5, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3738 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 2, c5 > 10.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3755 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 4, c1 > 2.0, c2 > 1.0, c3 <= 12.5, c4 <= 12.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3782 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 1, c2 > 1.0, c3 > 9.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3800 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 3, c5 <= 12.5, c1 > 1.5, c2 > 4.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3811 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 1, c2 > 1.0, c3 <= 11.5, c1 > 2.0, c4 > 5.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3852 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 <= 9.5, c3 > 6.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3901 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 > 3.0, c4 <= 9.0, c1 <= 8.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4039 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 <= 10.0, c2 <= 6.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4048 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 > 10.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4061 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 <= 11.0, c2 <= 12.0, c3 > 2.5, c4 <= 12.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4081 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 > 1.0, c4 <= 9.0, c2 <= 12.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4159 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c2 > 3.5, c4 > 9.5, c3 > 1.0, c1 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4177 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 <= 7.5, c4 > 10.5, c1 <= 12.5, c2 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4184 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 > 7.5, c4 <= 11.5, c2 > 10.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4190 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 2.0, c1 <= 12, c2 > 1.5, c4 > 1.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4194 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c4 > 2.5, c2 <= 6.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4199 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c4 > 2.5, c2 > 6.0, c5 > 2.0, c1 > 7.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4207 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 <= 8.0, c1 > 3.5, c4 > 1.5, c2 > 2.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4210 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 > 8.0, c5 > 2.0, c1 > 1.0, c2 <= 13, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4232 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 > 1.5, c4 > 2.0, c2 <= 8.5, c5 <= 10.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4236 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c1 <= 10.0, c4 > 1.5, c2 > 2.0, c3 > 4.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4276 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 4.0, c4 > 6.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4293 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 > 5.5, c5 <= 8.0, c1 > 2.5, c3 > 3.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4357 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c2 > 2.5, c1 <= 10.5, c3 > 5.0, c4 <= 10.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4412 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c5 > 1.0, c3 <= 11.0, c4 > 2.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4414 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c5 > 1.0, c3 <= 11.0, c4 > 2.0, c1 > 4.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4493 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c4 <= 11.0, c3 > 1.0, c1 > 4.0, c2 > 2.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4498 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c4 > 11.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4549 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 <= 7.0, c3 > 7.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4567 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 > 6.0, c4 > 1.5, c1 > 5.0, c2 > 2.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4613 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 <= 9.5, c3 > 3.0, c1 <= 9.5, c4 > 2.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4633 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 <= 10.0, c3 > 1.5, c1 <= 4.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4692 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 3, c3 > 8.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4746 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 > 4.5, c3 <= 7.0, c4 <= 11.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4779 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 3, c5 <= 12, c4 <= 10.0, c3 > 3.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4784 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 <= 11.0, c5 <= 7.5, c4 <= 12.0, c2 > 2.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4785 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 <= 11.0, c5 <= 7.5, c4 <= 12.0, c2 > 2.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4788 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 <= 11.0, c5 > 7.5, c3 <= 11.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4816 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 3, c4 > 1.0, c2 > 1.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4827 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 <= 10.0, c5 > 1.0, c3 <= 10.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4828 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 <= 10.0, c5 > 1.0, c3 <= 10.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4887 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 <= 10.0, c2 > 1.5, c3 > 3.0, c5 <= 10.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4922 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 > 6.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4937 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 <= 8.0, c3 <= 9.5, c4 > 4.0, c1 > 5.5, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4972 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 > 4.0, c5 > 2.5, c1 > 7.5, c2 > 1.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4982 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 > 7.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5016 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 > 4.5, c1 > 6.5, c5 > 1.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5034 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 3, c1 > 1.5, c4 > 2.0, c3 > 1.5, c2 > 3.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5083 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 1, c1 > 5.5, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5203 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 1, c2 > 1.0, c5 > 3.0, c3 > 1.0, c1 > 2.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5209 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 > 7.0, c3 > 2.0, c1 <= 7.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5253 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c3 > 1.0, c2 > 6.5, c1 <= 9.0, c4 <= 9.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5261 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 7.5, c3 > 3.0, c5 > 3.5, c1 <= 4.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5263 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 7.5, c3 > 3.0, c5 > 3.5, c1 > 4.0, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5273 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 > 1.5, c3 > 3.0, c2 <= 6.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5324 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 <= 12.0, c5 <= 13, c2 > 2.0, c3 <= 9.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5345 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 1.5, c2 > 2.0, c3 > 1.5, c4 > 2.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5358 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 > 5.0, c2 <= 10.5, c1 <= 11.5, c3 > 4.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5368 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 > 4.5, c1 > 1.0, c2 > 3.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5390 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 <= 11.5, c2 > 2.0, c4 > 3.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5410 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5420 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 1.0, c1 > 1.0, c5 > 1.5, c3 > 1.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5436 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 <= 9.5, c1 <= 13, c5 <= 8.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5517 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 > 8.0, c2 > 1.5, c4 > 1.0, c1 > 5.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5578 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 <= 5.0, c1 > 5.5, c5 > 1.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5640 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 <= 5.5, c1 > 5.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5645 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 <= 7.5, c2 > 5.0, c3 > 5.5, c4 > 5.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5673 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 2, c3 <= 12.0, c4 <= 6.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5679 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 1, c2 > 5.0, c5 > 7.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5682 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 1, c2 > 5.0, c5 <= 7.0, c1 > 2.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5688 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 4, c3 > 2.0, c5 > 1.5, c4 > 6.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5694 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 <= 7.5, c2 <= 6.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5702 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 > 7.5, c4 > 7.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5710 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 <= 12.5, c1 > 2.0, c4 > 4.5, c3 <= 11.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5760 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 1.0, c4 > 4.0, c1 <= 7.0, c2 <= 6.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5870 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c1 > 2.0, c2 > 3.5, c3 > 2.5, c5 > 3.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5923 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 <= 9.0, c3 <= 12, c1 > 4.5, c4 > 2.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5953 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5963 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 <= 8.0, c2 <= 12.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5968 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 <= 8.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6015 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 > 1.0, c3 <= 12.5, c4 > 1.5, c5 > 1.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6066 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 <= 10.0, c2 > 2.0, c4 <= 12.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6077 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 1, c3 <= 12.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6089 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 4, c5 > 3.0, c1 > 2.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6098 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 3.0, c5 > 2.0, c2 > 3.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6146 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 2, c4 > 3.5, c1 <= 6.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6155 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 <= 5.0, c4 > 6.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6161 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 > 5.0, c1 <= 12.5, c2 > 4.0, c3 > 4.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6182 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 > 4.5, c4 <= 12.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6184 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 > 4.5, c4 <= 12.5, c1 > 5.0, c2 <= 9.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6210 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 4, c1 <= 12.0, c5 > 3.0, c4 <= 7.5, c2 > 4.0, c3 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6222 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 > 2.5, c1 <= 9.0, c3 > 3.0, c4 > 1.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6240 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 <= 11.0, c3 > 10.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6243 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 > 11.0, c3 > 3.5, c2 > 4.0, c4 > 5.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6247 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 <= 9.0, c4 > 3.0, c3 <= 10.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6248 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 <= 9.0, c4 > 3.0, c3 <= 10.5, c5 <= 4.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6278 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 <= 9.0, c1 > 1.0, c2 <= 6.5, c5 > 4.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6283 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 <= 9.0, c1 > 1.0, c2 > 6.5, c5 > 5.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6302 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 > 3.5, c2 <= 13, c1 > 4.5, c5 <= 11, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6305 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 3, c2 > 2.0, c3 > 2.0, c1 > 2.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6313 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 2, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6332 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 > 4.0, c1 <= 13, c3 <= 12.0, c2 <= 6.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6334 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 > 4.0, c1 <= 13, c3 <= 12.0, c2 > 6.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6344 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 > 7.0, c1 <= 11.5, c3 > 4.0, c5 > 7.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6370 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 > 8.0, c2 > 2.5, c5 > 2.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6378 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c2 > 2.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6382 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 <= 4.5, c1 > 3.5, c3 > 5.0, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6459 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 > 7.5, c2 > 5.5, c4 <= 4.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6486 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 9.0, c3 <= 11.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6504 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 > 3.5, c2 > 1.5, c3 > 1.0, c1 > 2.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6510 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c3 <= 12.5, c4 > 1.0, c1 <= 11.5, c2 > 1.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6530 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 <= 5.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6531 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 <= 5.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6532 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 > 5.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6555 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 <= 6.0, c4 > 3.5, c5 > 3.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6611 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 <= 4.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6636 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 3, c3 <= 12.0, c1 > 3.0, c2 > 2.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6638 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 3, c3 <= 12.0, c1 > 3.0, c2 > 2.0, c5 > 4.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6641 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 3, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6660 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 <= 9.0, c3 <= 9.5, c2 > 1.0, c4 > 3.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6670 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 > 9.0, c2 > 2.0, c3 > 3.0, c4 > 5.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6769 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 <= 13, c2 > 3.0, c3 > 2.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6783 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c1 > 1.5, c5 > 1.5, c3 <= 3.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6880 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c4 > 3.5, c1 > 1.5, c2 > 3.0, c3 > 1.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6915 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 <= 12.0, c5 > 10.0, c1 > 5.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6923 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 2.0, c3 <= 5.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6994 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c2 <= 11.5, c1 <= 10.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6997 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c2 <= 11.5, c1 <= 10.0, c4 > 5.0, c3 > 3.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7017 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c1 > 3.5, c2 > 3.5, c4 > 8.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7035 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 9.0, c2 <= 8.0, c3 > 3.5, c1 <= 10.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7057 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 <= 4.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7093 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 <= 4.5, c1 <= 8.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7099 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 > 4.5, c5 <= 11, c4 <= 12.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7169 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 > 11.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7198 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 > 1.0, c4 > 8.0, c5 <= 11.5, c2 > 1.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7232 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 > 3.5, c1 > 1.0, c2 > 1.5, c4 <= 5.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7238 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 > 8.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7300 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 <= 7.5, c4 <= 12.5, c5 <= 7.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7359 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 4, c1 > 2.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7388 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 <= 11.5, c2 <= 9.5, c5 > 2.5, c1 > 4.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7396 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 > 5.5, c4 <= 12.5, c3 <= 9.5, c1 > 6.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7443 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 4, c1 <= 9.0, c5 > 4.0, c2 > 3.0, c3 > 3.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7446 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 4, c1 > 9.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7463 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 > 6.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7464 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 > 6.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7516 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 <= 8.0, c4 > 5.0, c2 <= 13, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7528 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 > 7.0, c5 > 6.0, c3 <= 11.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7555 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 <= 9.5, c2 > 3.5, c5 > 5.0, c1 > 3.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7611 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 4, c1 > 2.5, c2 <= 12.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7632 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 2, c4 > 10.0, c1 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7667 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 2, c4 <= 13, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7716 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 > 2.0, c4 <= 12.0, c1 <= 10.0, c5 > 4.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7748 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 1, c2 <= 7.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7838 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 > 8.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7841 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 <= 6.5, c4 > 5.0, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7879 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 > 4.5, c3 > 3.0, c4 <= 8.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7918 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7931 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 > 2.0, c3 <= 12.5, c4 > 5.0, c1 > 2.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7950 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 <= 3.0, c3 > 3.0, c5 > 5.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7952 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 <= 3.0, c3 > 3.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7981 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 <= 10.0, c2 > 1.0, c3 > 1.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7995 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 <= 9.0, c3 > 3.0, c5 > 3.5, c1 > 2.5, c2 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8007 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c1 <= 11.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8070 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 <= 12.0, c3 <= 12.5, c4 > 3.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8081 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 > 7.0, c2 > 6.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8125 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 > 7.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8126 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 > 7.5, c3 > 7.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8135 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 > 3.5, c1 > 6.5, c2 <= 8.5, c5 > 7.0, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8162 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c4 > 1.5, c1 > 3.0, c5 > 1.5, c2 > 5.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8163 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c4 > 1.5, c1 > 3.0, c5 > 1.5, c2 > 5.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8249 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 <= 8.0, c4 <= 13, c3 <= 11.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8282 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 > 1.5, c4 > 1.0, c3 > 3.0, c5 > 6.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8297 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 3, c4 <= 4.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8302 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 3, c4 > 4.5, c3 > 3.5, c1 <= 12, c5 <= 10.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8359 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 <= 11.5, c3 > 3.0, c4 > 5.0, c2 > 2.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8470 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c3 <= 12, c2 > 1.0, c5 <= 13, c1 <= 8.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8472 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c3 <= 12, c2 > 1.0, c5 <= 13, c1 > 8.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8477 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 > 7.0, c2 > 2.0, c5 <= 13, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8495 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 > 5.0, c1 > 1.5, c5 <= 9.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8496 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 > 5.0, c1 > 1.5, c5 <= 9.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8533 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 <= 11.5, c4 <= 8.5, c1 > 5.0, c2 > 3.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8568 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 <= 11.0, c4 > 1.5, c3 > 5.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8605 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 <= 13, c1 <= 8.0, c4 <= 11.0, c2 > 1.5, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8650 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 > 3.0, c2 > 1.0, c1 <= 9.0, c5 <= 5.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8697 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 <= 8.0, c1 <= 8.0, c4 > 2.0, c3 > 3.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8705 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 4, c2 > 1.0, c5 > 2.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8728 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 > 5.0, c3 <= 8.0, c5 > 4.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8785 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 <= 8.0, c4 > 4.5, c3 > 2.5, c2 <= 12.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8805 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c4 > 2.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8838 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 3, c5 <= 12.0, c3 > 2.5, c1 > 1.0, c2 > 7.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8877 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8878 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 > 3.5, c3 > 11.5, c1 > 1.0, c2 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8889 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 2, c2 > 1.0, c4 <= 12.0, c5 <= 9.0, c1 > 2.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8896 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 <= 8.0, c4 > 2.0, c5 > 1.0, c2 > 1.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8918 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 > 8.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8924 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 <= 8.5, c1 <= 11.0, c2 <= 10.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8945 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 1, c2 > 1.5, c5 <= 10.5, c3 > 4.5, c1 > 6.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8964 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 3, c3 > 4.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8966 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 <= 5.0, c2 <= 4.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8996 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 <= 8.0, c2 <= 5.0, c5 > 7.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9000 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 <= 8.0, c2 > 5.0, c1 > 3.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9009 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 <= 8.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9013 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 <= 8.0, c2 <= 8.5, c5 <= 11.5, c1 > 4.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9022 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 > 8.0, c1 > 6.5, c5 > 5.0, c2 <= 12, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9037 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9074 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c2 > 5.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9076 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 > 2.0, c1 <= 12.0, c3 <= 12.0, c5 > 7.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9095 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 > 10.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9126 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 > 8.5, c1 <= 13, c3 <= 11.5, c2 > 1.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9130 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.5, c1 > 1.0, c2 > 2.0, c3 > 7.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9137 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c2 <= 13, c5 > 1.0, c3 > 5.5, c4 > 2.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9170 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 > 2.5, c2 > 1.0, c3 > 1.5, c4 > 7.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9173 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 > 2.5, c2 > 1.0, c3 > 1.5, c4 <= 7.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9183 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 <= 13, c1 <= 12, c3 <= 9.5, c4 > 5.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9191 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 > 1.5, c1 <= 9.5, c2 > 5.5, c3 > 1.5, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9208 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 <= 11.5, c1 <= 3.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9212 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 <= 11.5, c1 > 3.0, c2 > 2.5, c3 <= 5.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9213 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 <= 11.5, c1 > 3.0, c2 > 2.5, c3 > 5.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9218 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 <= 12.5, c1 <= 8.0, c3 > 2.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9259 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 3, c5 > 10.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9332 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 > 1.0, c4 <= 8.0, c1 > 7.5, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9347 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 <= 11.5, c1 > 2.5, c2 <= 11.0, c3 <= 7.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9380 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 <= 10.5, c1 <= 13, c4 > 2.5, c2 > 11.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9391 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 <= 8.0, c2 > 3.5, c4 > 4.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9410 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 <= 3.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9427 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 <= 8.0, c5 <= 9.0, c3 > 3.0, c2 <= 12.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9446 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 > 2.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9449 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 <= 2.0, c1 > 3.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9575 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 <= 8.0, c3 > 2.5, c2 <= 11.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9604 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 <= 4.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9608 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 > 4.0, c4 <= 8.0, c3 > 3.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9614 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 1, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9624 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 4, c3 > 2.0, c1 <= 9.0, c2 > 3.5, c5 > 5.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9628 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 4, c3 > 2.0, c1 > 9.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9653 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 1, c2 > 1.0, c4 <= 11, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9664 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 4, c3 > 4.5, c1 > 1.5, c5 <= 13, c2 > 6.5, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9713 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 2, c1 <= 10.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9720 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 2, c1 > 10.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9751 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 2, c2 > 1.5, c1 > 1.5, c3 > 1.0, c4 > 4.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9753 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 <= 5.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9799 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 1, c3 > 1.0, c1 > 2.5, c2 <= 12, c4 > 4.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9840 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 1, c1 <= 12.5, c3 <= 5.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9847 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c1 > 4.0, c3 > 1.5, c4 <= 9.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9865 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 <= 10.5, c2 <= 12.5, c1 <= 9.0, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9886 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 > 3.0, c1 > 2.0, c3 > 2.5, c2 > 4.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9887 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 > 3.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9898 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 > 4.0, c2 > 3.5, c3 > 6.0, c1 > 8.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9940 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 4, c1 <= 13, c3 > 11.0, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9976 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 4, c1 > 3.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9978 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 4, c1 > 3.0, c3 > 3.0, c2 > 3.0, c4 <= 9.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9990 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 2, c2 > 2.0, c1 > 3.5, c3 > 2.0, c5 > 2.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10031 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 > 5.0, c5 <= 10.0, c2 <= 8.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10043 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 1, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10077 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 <= 9.0, c2 > 2.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10083 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 > 9.0, c3 > 6.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10120 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 > 2.0, c4 <= 9.5, c2 > 1.0, c3 > 3.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10212 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 > 5.0, c3 > 7.0, c4 > 2.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10268 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 > 11.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10269 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 > 11.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10275 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 > 4.5, c1 > 1.5, c3 > 2.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10299 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 <= 11.0, c3 > 2.0, c5 > 6.0, c1 > 5.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10345 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 <= 12.0, c4 <= 5.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10403 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 > 6.0, c1 <= 11.5, c3 > 7.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10404 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 > 2.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10437 poker_hand = 1 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 <= 12.0, c1 > 2.0, c5 > 6.5, c2 > 1.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10449 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 1, c2 > 1.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10452 poker_hand = 0 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 4, c2 > 3.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10475 poker_hand = 5 classifying 4.0 num of facts with rank:1.599360255897641E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 1, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#3 poker_hand = 5 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 4, c5 <= 12.5, c3 <= 12.0, c2 <= 11.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#6 poker_hand = 5 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 4, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#10 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 3, c4 > 3.0, c1 <= 9.5, c2 <= 12.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#20 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 2, c5 > 1.5, c2 <= 5.5, c1 <= 13, c3 <= 13, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#29 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 > 8.5, c2 > 2.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#35 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 <= 8.5, c5 > 4.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#40 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 3, c1 > 4.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#50 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 2, c2 > 1.0, c5 > 1.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#52 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 > 7.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#74 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 3, c5 > 2.0, c2 <= 6.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#76 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 3, c5 > 2.0, c2 <= 6.0, c1 > 8.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#90 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 1, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#102 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 <= 11.0, c3 > 5.5, c4 <= 3.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#103 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 <= 11.0, c3 > 5.5, c4 > 3.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#107 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 <= 11.0, c3 <= 5.5, c4 <= 11.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#111 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 <= 4.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#117 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 > 4.5, c4 > 2.0, c3 > 4.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#128 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 > 5.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#162 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 > 7.5, c5 > 7.5, c1 > 8.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#171 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 3, c1 > 2.5, c2 > 7.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#182 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 <= 7.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#188 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 1, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#213 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 2, c1 > 1.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#243 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 <= 7.0, c4 > 2.5, c3 <= 11.5, c2 > 2.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#260 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 <= 6.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#267 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 > 6.0, c1 > 8.5, c5 <= 9.5, c2 <= 9.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#268 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 > 6.0, c1 > 8.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#279 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 4, c1 <= 11.0, c4 <= 12.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#285 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 3, c3 <= 12, c1 > 2.0, c4 <= 11.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#332 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 2, c1 > 2.5, c5 > 3.0, c2 > 2.5, c4 <= 6.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#335 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 > 5.5, c2 <= 4.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#338 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 > 5.5, c2 > 4.5, c1 > 4.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#372 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 > 3.0, c3 > 2.5, c1 > 2.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#382 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 1, c1 > 1.0, c3 > 1.5, c4 <= 10.0, c5 > 7.5, c2 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#386 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 4, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#411 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 > 9.0, c2 > 4.0, c4 <= 8.5, c1 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#475 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 4, c5 > 3.5, c2 > 1.5, c1 <= 11.5, c4 > 5.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#513 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 3, c1 <= 12.5, c5 > 2.5, c4 > 1.0, c2 <= 3.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#540 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#548 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 <= 8.0, c1 <= 10.5, c5 <= 8.0, c2 > 3.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#562 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 > 8.0, c1 > 8.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#565 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 <= 9.5, c4 <= 11.0, c2 <= 12.5, c3 > 3.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#566 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 <= 9.5, c4 <= 11.0, c2 <= 12.5, c3 > 3.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#594 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 > 4.0, c5 > 5.5, c1 <= 9.5, c3 > 5.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#601 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 > 4.0, c5 <= 5.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#614 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 > 6.5, c1 > 4.0, c4 > 6.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#615 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 2, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#634 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 10.5, c1 <= 6.5, c4 > 6.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#640 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 > 10.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#653 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 > 1.0, c1 > 1.0, c2 <= 12.5, c3 > 2.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#670 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 > 1.5, c5 > 6.5, c4 <= 8.5, c3 > 1.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#683 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 > 3.0, c4 > 4.0, c2 > 7.5, c3 <= 9.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#689 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 3, c3 > 3.5, c2 <= 12.5, c5 <= 10.0, c4 <= 10.5, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#704 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 <= 11.5, c4 > 2.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#706 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 1, c3 <= 6.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#744 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 <= 8.5, c1 > 9.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#748 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 <= 3.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#761 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 > 8.5, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#775 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 3, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#788 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 1, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#797 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 4, c1 > 1.0, c2 > 1.5, c4 <= 12.0, c3 > 4.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#866 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 1, c1 <= 6.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#868 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 1, c1 > 6.5, c5 <= 9.0, c4 <= 12.5, c2 <= 13, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#869 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 1, c1 > 6.5, c5 <= 9.0, c4 <= 12.5, c2 <= 13, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#871 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 1, c1 > 6.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#878 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 4, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#894 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 <= 10.0, c1 > 1.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#912 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 <= 5.5, c1 <= 8.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#914 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 > 10.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#918 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 4, c5 <= 13, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#935 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 <= 10.5, c3 <= 9.0, c5 > 2.0, c4 <= 9.5, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#952 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 12.5, c2 <= 11.5, c4 <= 11.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#960 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 <= 5.0, c1 <= 11.0, c3 > 1.5, c4 > 7.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#968 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 > 5.0, c1 > 2.0, c3 > 1.0, c5 > 10.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#979 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 <= 9.5, c2 > 1.0, c1 > 10.0, c5 > 3.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#986 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 > 9.5, c5 <= 5.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#988 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 <= 10.0, c1 <= 10.0, c4 > 1.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#990 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 <= 10.0, c1 <= 10.0, c4 > 1.5, c2 > 1.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1019 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 > 7.5, c1 <= 12.0, c3 > 10.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1032 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 <= 8.0, c2 > 5.0, c3 <= 8.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1033 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 <= 8.0, c2 > 5.0, c3 <= 8.5, c1 > 2.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1036 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 > 8.0, c2 <= 13, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1041 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 <= 6.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1044 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 <= 6.0, c2 > 5.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1052 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 <= 4.5, c2 <= 10.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1054 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 > 4.5, c5 <= 10.0, c2 <= 3.0, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1056 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 > 4.5, c5 <= 10.0, c2 > 3.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1084 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 <= 4.0, c3 > 5.0, c1 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1140 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 <= 10.0, c5 > 1.0, c1 > 1.5, c2 <= 13, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1145 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 > 10.0, c1 > 6.5, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1149 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 <= 9.0, c3 > 2.0, c4 > 1.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1157 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 > 9.0, c5 > 9.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1183 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 > 2.0, c2 > 1.5, c5 <= 10.5, c3 > 4.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1188 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1208 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 > 6.5, c5 > 1.5, c3 > 3.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1215 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 > 2.0, c3 > 9.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1236 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 3, c3 <= 12.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1246 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 <= 11.5, c3 <= 11.0, c5 > 11.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1250 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 <= 11.5, c3 > 11.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1259 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 > 1.5, c1 > 8.5, c5 > 3.0, c3 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1261 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 > 7.0, c5 <= 10.5, c1 <= 10.5, c4 <= 10.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1273 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 <= 7.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1284 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 > 5.0, c2 <= 11.5, c4 > 1.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1292 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 2, c5 > 1.5, c2 <= 12.5, c3 > 3.0, c1 > 3.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1324 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 2, c2 <= 12.0, c3 > 1.0, c4 <= 11.5, c1 <= 6.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1334 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 1, c2 <= 13, c3 <= 12.0, c1 > 2.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1340 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 4, c1 > 1.5, c3 > 2.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1345 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 4, c1 > 1.5, c3 <= 2.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1347 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 3, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1366 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 > 5.5, c2 <= 6.5, c1 > 3.0, c3 > 4.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1373 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 <= 5.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1423 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 <= 9.0, c3 > 1.5, c5 <= 9.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1425 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 <= 9.0, c3 > 1.5, c5 > 9.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1430 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 > 9.0, c4 > 6.5, c3 <= 9.0, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1442 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 > 3.0, c2 <= 12.5, c1 > 3.0, c3 <= 2.5, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1460 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 <= 13, c1 > 7.0, c5 > 3.5, c2 > 8.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1472 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 > 5.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1503 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 <= 7.0, c1 > 6.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1516 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 > 6.0, c2 > 3.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1521 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 <= 9.0, c1 <= 11.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1523 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 <= 9.0, c1 <= 11.5, c2 > 6.0, c3 > 4.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1525 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 > 9.0, c2 <= 4.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1529 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 > 9.0, c2 > 4.0, c1 > 3.5, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1546 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 2, c3 > 2.0, c5 <= 13, c1 > 4.0, c2 > 2.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1568 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 3, c1 > 1.0, c2 > 1.5, c3 <= 12.0, c5 <= 12.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1579 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 2, c1 <= 13, c2 > 3.0, c3 <= 8.5, c5 > 2.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1585 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 <= 3.0, c2 > 2.0, c1 > 3.0, c3 > 3.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1631 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 > 4.0, c3 <= 10.0, c1 <= 12.0, c4 > 2.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1632 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 > 4.0, c3 <= 10.0, c1 <= 12.0, c4 > 2.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1642 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 3, c4 > 2.0, c5 <= 12.0, c3 <= 5.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1646 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 3, c4 > 2.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1652 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 2, c5 > 1.0, c3 <= 11.5, c2 <= 11.0, c1 <= 6.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1679 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 3, c2 <= 12.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1710 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 4, c5 <= 4.0, c1 > 6.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1713 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 4, c5 > 4.0, c2 > 2.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1715 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 4, c5 > 4.0, c2 > 2.5, c1 > 4.0, c3 <= 8.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1720 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 > 1.0, c1 > 1.5, c5 <= 12.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1735 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 2, c1 > 10.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1737 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 > 2.0, c5 > 13, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1742 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 > 2.0, c5 <= 13, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1747 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 4, c3 <= 11.0, c1 <= 6.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1748 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 4, c3 <= 11.0, c1 > 6.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1751 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 4, c3 <= 11.0, c1 > 6.0, c2 > 5.0, c5 > 3.0, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1755 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 3, c4 > 1.0, c1 <= 13, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1769 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 > 8.0, c4 > 2.0, c1 <= 12.5, c2 <= 10.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1781 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 > 4.0, c4 > 5.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1782 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 > 4.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1792 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 <= 7.0, c2 <= 7.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1793 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 <= 7.0, c2 <= 7.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1857 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 <= 11, c3 <= 9.0, c2 > 7.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1859 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 <= 11, c3 <= 9.0, c2 <= 7.0, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1861 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 <= 11, c3 > 9.0, c2 > 5.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1867 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 4, c4 <= 10.0, c1 > 1.0, c2 > 1.0, c3 <= 10.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1868 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 4, c4 <= 10.0, c1 > 1.0, c2 > 1.0, c3 <= 10.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1889 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 2, c2 > 3.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1911 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 3, c5 > 1.0, c4 <= 11.0, c1 > 3.0, c2 <= 6.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1912 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 3, c5 > 1.0, c4 <= 11.0, c1 > 3.0, c2 <= 6.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1916 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 3, c5 > 1.0, c4 > 11.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1926 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 > 4.0, c1 > 3.0, c2 <= 6.5, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1946 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 <= 10.5, c2 > 2.5, c1 <= 9.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1948 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 <= 10.5, c2 > 2.5, c1 <= 9.5, c5 <= 11.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1973 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 > 1.5, c4 > 2.5, c1 <= 7.0, c2 > 5.0, c5 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1983 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 > 9.0, c2 > 7.0, c1 > 4.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2015 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 <= 11.5, c1 <= 7.0, c4 > 3.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2021 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 <= 10.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2028 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 > 10.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2029 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 4, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2043 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 > 4.0, c3 > 2.0, c1 > 3.0, c2 > 7.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2069 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 > 6.0, c2 > 1.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2071 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 > 6.0, c2 > 1.0, c5 > 7.5, c3 > 2.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2075 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 4, c5 > 7.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2081 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 4, c5 <= 7.0, c3 > 1.5, c4 <= 9.5, c1 > 4.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2097 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 > 3.5, c3 > 10.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2101 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 <= 7.5, c2 > 2.5, c4 > 3.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2106 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 > 7.5, c5 > 2.5, c2 > 3.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2107 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 > 7.5, c5 > 2.5, c2 > 3.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2142 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 <= 6.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2167 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 > 3.5, c2 > 3.0, c1 > 2.5, c3 <= 12.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2173 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 3, c1 > 2.0, c5 <= 9.5, c2 > 3.5, c3 > 2.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2177 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 3, c1 > 2.0, c5 > 9.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2186 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 > 3.0, c5 <= 10.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2208 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 > 5.0, c3 <= 11.5, c5 > 2.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2209 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 > 5.0, c3 <= 11.5, c5 > 2.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2218 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 > 5.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2221 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 > 5.0, c3 > 4.5, c4 <= 9.0, c2 > 3.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2222 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 > 5.0, c3 > 4.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2271 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 <= 7.0, c4 <= 12.5, c2 > 1.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2309 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 <= 11.5, c2 > 1.0, c3 <= 4.0, c1 > 5.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2333 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 4, c4 > 3.0, c2 > 1.0, c1 <= 12, c3 > 3.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2343 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 > 8.0, c1 <= 12.5, c3 <= 12.5, c2 > 4.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2348 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 2, c2 > 1.0, c3 > 1.0, c4 <= 10.5, c5 <= 11, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2369 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 <= 2.0, c5 <= 7.5, c2 <= 11.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2373 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 4, c1 > 1.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2385 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 3, c4 > 3.5, c1 > 1.5, c5 > 3.0, c2 > 2.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2400 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 <= 8.0, c4 <= 12.5, c2 > 9.5, c3 > 6.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2407 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 > 8.0, c2 > 2.5, c3 > 3.5, c4 > 2.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2416 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 <= 12.0, c3 > 5.0, c5 <= 11, c4 > 2.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2431 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 > 5.5, c5 > 4.5, c1 > 3.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2438 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 <= 5.5, c5 <= 10.0, c2 > 3.0, c1 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2455 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 <= 8.5, c1 > 2.5, c3 <= 12, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2474 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 <= 11.5, c4 <= 11.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2484 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 <= 6.5, c1 > 6.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2491 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 > 6.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2494 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 1, c3 <= 4.5, c1 > 2.5, c4 <= 4.5, c2 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2495 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 1, c3 <= 4.5, c1 > 2.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2531 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 1, c1 <= 9.5, c2 > 4.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2541 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 > 13, c1 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2565 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 1, c4 > 1.0, c3 > 4.0, c1 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2580 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 3, c5 > 1.5, c1 > 1.0, c2 <= 12, c3 > 7.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2584 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2586 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 > 1.5, c5 <= 9.0, c4 > 2.0, c1 <= 10.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2587 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 > 1.5, c5 <= 9.0, c4 > 2.0, c1 > 10.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2608 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c3 > 7.5, c4 <= 11.5, c5 > 7.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2620 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 3, c5 <= 12, c1 > 4.0, c4 > 4.5, c2 > 6.0, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2628 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 2, c3 > 10.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2663 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 2, c5 > 2.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2672 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 > 2.0, c1 <= 12.0, c5 > 3.0, c3 > 3.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2684 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 4, c4 > 3.0, c1 > 3.0, c5 > 4.5, c2 <= 9.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2689 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 > 1.5, c2 > 2.0, c1 <= 12.0, c4 > 7.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2693 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 > 1.5, c2 <= 2.0, c1 <= 7.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2707 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 > 1.5, c4 <= 6.5, c1 > 3.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2713 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 <= 9.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2716 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 <= 9.0, c3 > 4.0, c4 <= 13, c5 <= 12.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2719 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 > 9.0, c5 > 4.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2727 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 > 11.5, c1 > 7.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2729 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 <= 11.5, c1 <= 8.5, c3 > 2.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2730 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 <= 11.5, c1 <= 8.5, c3 > 2.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2737 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 <= 10.0, c5 > 3.0, c1 <= 11.0, c2 > 5.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2747 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 > 10.0, c2 > 3.0, c1 > 3.5, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2756 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 <= 6.0, c2 > 4.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2757 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 > 6.0, c1 > 2.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2758 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 > 6.0, c1 > 2.0, c3 > 4.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2760 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 > 6.0, c1 > 2.0, c3 > 4.5, c2 <= 11.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2764 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 > 1.0, c4 <= 7.5, c2 > 4.0, c1 > 4.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2772 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 > 2.0, c1 <= 3.5, c2 > 4.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2791 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 > 4.0, c3 > 1.5, c4 <= 8.5, c5 > 2.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2793 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 > 4.0, c3 > 1.5, c4 > 8.5, c1 <= 12.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2884 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 > 10.0, c2 <= 8.0, c1 > 4.5, c4 <= 6.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2888 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 <= 9.0, c3 > 2.5, c4 > 1.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2896 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 > 9.0, c1 > 1.5, c3 > 4.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2901 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 <= 3.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2926 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 <= 9.5, c1 > 3.0, c2 > 4.5, c5 <= 7.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2929 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 > 9.5, c4 <= 6.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2936 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2958 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 1, c2 <= 12.5, c1 > 1.0, c3 <= 12.5, c4 <= 12, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2963 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 4, c3 <= 8.0, c1 > 3.0, c2 <= 11.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2971 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 <= 3.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2981 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 > 3.5, c1 <= 8.5, c3 > 2.0, c2 > 8.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2986 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 2, c5 > 1.0, c2 > 1.5, c1 <= 13, c3 <= 4.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3010 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 > 7.5, c2 > 6.5, c3 > 3.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3033 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 > 3.5, c4 > 9.5, c1 > 1.0, c5 <= 10.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3057 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 3, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3062 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 3, c1 > 1.5, c2 <= 13, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3086 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 <= 8.5, c3 <= 8.5, c2 <= 10.5, c4 > 1.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3089 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 <= 8.5, c3 <= 8.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3105 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 > 4.0, c5 <= 5.0, c3 > 2.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3113 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 2, c1 <= 12.0, c5 > 2.0, c2 > 1.5, c3 > 1.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3126 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 <= 6.5, c1 > 4.5, c5 > 1.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3137 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 4, c4 > 3.0, c1 <= 13, c3 > 1.0, c2 > 5.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3139 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 4, c4 > 3.0, c1 <= 13, c3 > 1.0, c2 <= 5.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3158 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 <= 11.0, c1 > 1.5, c2 <= 10.5, c3 > 9.5, c4 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3173 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 1, c1 > 6.0, c5 > 7.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3174 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 1, c1 > 6.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3178 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 <= 6.5, c1 > 4.5, c5 > 3.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3181 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 > 6.5, c5 <= 9.0, c4 > 1.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3183 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 > 6.5, c5 > 9.0, c1 <= 10.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3205 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 > 3.0, c3 > 4.5, c1 > 1.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3209 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 <= 10.5, c2 > 3.0, c3 > 1.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3215 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 > 10.5, c1 > 7.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3230 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 <= 8.5, c3 > 3.5, c2 > 1.0, c1 > 5.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3249 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 > 1.0, c2 > 10.0, c4 > 8.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3284 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 > 2.5, c1 > 2.0, c2 <= 13, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3287 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 <= 4.0, c5 <= 3.5, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3293 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 > 4.0, c1 > 2.0, c2 > 1.0, c3 <= 5.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3310 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 <= 8.0, c5 > 12.0, c1 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3317 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3319 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 4, c1 <= 4.0, c2 > 3.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3388 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 1, c5 <= 10.5, c1 <= 13, c2 <= 12.5, c4 > 3.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3404 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 > 11.5, c1 > 1.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3407 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 <= 11.5, c1 > 2.5, c4 > 1.0, c5 > 5.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3416 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 2, c1 > 1.0, c4 > 2.0, c5 > 9.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3435 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 <= 6.5, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3457 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 2, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3485 poker_hand = 5 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 3, c4 <= 10.5, c5 <= 8.5, c1 <= 12, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#3486 poker_hand = 5 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 3, c4 <= 10.5, c5 <= 8.5, c1 <= 12, c2 <= 6.5, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#3489 poker_hand = 5 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 3, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#3490 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 2, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3492 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 2, c5 > 2.5, c1 > 1.5, c4 > 2.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3497 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 1, c2 > 2.0, c3 <= 12.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3498 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 1, c2 > 2.0, c3 <= 12.0, c1 > 3.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3515 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 3, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3518 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 3, c4 > 3.0, c5 <= 9.0, c2 > 3.5, c1 > 6.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3524 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 2, c2 > 3.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3537 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 > 8.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3538 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 > 8.0, c2 <= 6.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3547 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 > 5.0, c1 > 2.0, c3 <= 8.0, c2 > 3.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3556 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 > 1.0, c1 > 2.0, c5 > 2.5, c3 <= 5.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3568 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 2, c1 > 2.5, c5 > 4.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3577 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 > 2.0, c3 > 5.0, c1 > 1.0, c2 <= 13, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3600 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3615 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 <= 9.0, c4 <= 10.0, c3 > 4.0, c2 > 3.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3620 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 > 9.0, c5 > 1.5, c4 <= 5.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3629 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 > 5.5, c3 <= 8.5, c4 > 2.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3639 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 <= 9.5, c1 > 4.0, c5 > 3.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3683 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 3.0, c5 > 5.0, c3 <= 7.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3707 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 > 3.5, c2 > 9.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3718 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 > 8.0, c4 > 1.0, c3 > 5.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3723 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 > 1.0, c4 > 2.0, c1 <= 9.5, c5 <= 12.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3732 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 2, c5 <= 10.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3736 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 2, c5 <= 10.5, c4 > 2.5, c1 > 9.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3737 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 2, c5 <= 10.5, c4 > 2.5, c1 > 9.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3761 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 3, c5 > 2.0, c3 > 1.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3766 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 3, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3813 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 1, c2 > 1.0, c3 <= 11.5, c1 > 2.0, c4 <= 5.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3869 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 > 11.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3881 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 > 3.0, c1 > 3.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3882 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 > 3.0, c1 > 3.5, c2 > 3.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3884 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 > 3.0, c1 > 3.5, c2 > 3.5, c4 > 4.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3905 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 > 3.0, c4 > 9.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3909 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 > 1.0, c3 > 2.0, c2 <= 4.0, c4 > 8.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3917 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 3, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3918 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 3, c1 <= 11.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3922 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 3, c1 <= 11.5, c3 > 1.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3931 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 > 8.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3941 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 <= 10.0, c2 <= 6.5, c4 > 9.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3962 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 4, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3985 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 <= 3.0, c4 <= 11.5, c5 > 3.0, c1 > 3.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4006 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 <= 9.0, c3 <= 12.5, c5 > 2.5, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4015 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 > 2.0, c3 <= 11.0, c2 <= 6.5, c5 <= 9.0, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4035 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 > 9.0, c5 > 3.5, c1 > 4.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4073 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 1, c2 > 2.0, c1 <= 13, c3 > 2.0, c4 <= 11.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4078 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 1, c2 <= 2.0, c1 <= 11.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4086 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 > 1.0, c4 > 9.0, c2 > 2.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4094 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 <= 5.0, c2 > 1.0, c3 > 12.5, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4105 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 <= 3.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4111 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 > 3.5, c2 <= 10.5, c4 <= 11.5, c1 > 3.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4114 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 > 2.0, c5 <= 9.5, c1 <= 10.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4147 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 <= 12.5, c3 <= 10.0, c4 > 5.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4156 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4195 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c4 > 2.5, c2 <= 6.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4228 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 > 1.5, c4 > 2.0, c2 > 8.5, c3 > 11.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4229 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 > 1.5, c4 > 2.0, c2 > 8.5, c3 <= 11.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4230 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 > 1.5, c4 > 2.0, c2 > 8.5, c3 <= 11.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4233 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 > 1.5, c4 > 2.0, c2 <= 8.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4238 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c1 <= 10.0, c4 > 1.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4253 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 > 11.0, c4 > 1.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4266 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 4.0, c4 > 2.0, c3 <= 7.5, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4267 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 4.0, c4 > 2.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4275 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 4.0, c4 > 6.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4287 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 > 8.0, c4 > 5.0, c3 > 3.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4302 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 <= 5.5, c1 > 2.5, c3 > 9.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4308 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c1 > 3.5, c5 > 1.0, c3 > 3.5, c2 <= 11.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4314 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 <= 10.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4321 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4324 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 <= 11.0, c1 > 1.0, c2 > 2.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4343 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 > 6.0, c1 > 4.0, c2 <= 11.0, c3 > 3.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4345 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 <= 6.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4352 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 6.0, c2 > 1.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4361 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 > 8.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4365 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 > 8.5, c3 > 6.0, c4 > 6.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4368 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 <= 8.5, c1 <= 8.0, c3 <= 12, c2 > 7.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4371 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 <= 8.5, c1 > 8.0, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4377 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 > 1.0, c4 <= 13, c5 <= 12.0, c1 > 11.0, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4378 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 > 1.0, c4 <= 13, c5 > 12.0, c1 > 2.0, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4395 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 > 5.5, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4402 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 <= 7.5, c4 <= 11.5, c1 > 1.5, c5 > 5.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4407 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 > 7.5, c2 <= 6.5, c1 > 3.0, c4 > 1.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4413 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c5 > 1.0, c3 <= 11.0, c4 > 2.0, c1 > 4.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4426 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 13, c4 > 2.5, c5 > 2.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4500 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c4 > 1.0, c3 > 1.0, c5 <= 3.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4521 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 <= 8.5, c5 > 4.5, c2 > 2.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4531 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c3 <= 12.0, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4540 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 > 7.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4541 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 > 7.0, c1 > 2.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4542 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 > 7.0, c1 > 2.5, c2 <= 8.0, c3 <= 6.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4554 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 <= 7.0, c3 <= 7.0, c1 > 6.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4588 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 > 4.5, c3 > 8.5, c2 > 1.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4594 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4595 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c2 > 2.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4617 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 > 9.5, c1 > 1.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4650 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 > 4.5, c1 > 2.0, c2 <= 6.0, c3 <= 7.0, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4653 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 > 4.5, c1 > 2.0, c2 > 6.0, c4 <= 9.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4654 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 > 4.5, c1 > 2.0, c2 > 6.0, c4 <= 9.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4655 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 > 4.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4684 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c5 > 2.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4689 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 3, c3 <= 8.0, c1 > 1.5, c2 <= 12.5, c4 > 1.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4690 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 3, c3 <= 8.0, c1 > 1.5, c2 <= 12.5, c4 > 1.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4737 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 <= 4.5, c4 > 6.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4765 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 <= 10.5, c1 <= 8.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4768 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 <= 10.5, c1 > 8.0, c3 > 1.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4776 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 3, c5 <= 12, c4 <= 10.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4777 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 3, c5 <= 12, c4 <= 10.0, c3 > 3.5, c1 > 7.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4786 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 <= 11.0, c5 <= 7.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4793 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 > 11.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4809 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 4, c5 <= 10.5, c4 > 2.5, c1 > 3.5, c2 <= 13, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4820 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 2, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4823 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 2, c1 > 3.5, c2 > 2.0, c4 > 1.5, c5 > 1.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4835 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 > 10.0, c2 > 4.0, c5 <= 9.5, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4836 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 > 10.0, c2 > 4.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4843 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 <= 11.0, c5 <= 12.5, c2 <= 11.5, c3 > 3.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4936 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 <= 8.0, c3 <= 9.5, c4 <= 4.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4957 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 <= 11.5, c1 <= 12, c4 <= 11.5, c2 > 2.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4964 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 <= 4.0, c5 > 7.5, c1 > 5.5, c2 > 5.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4967 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 > 4.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4969 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 > 4.0, c5 > 2.5, c1 <= 7.5, c2 <= 12.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4984 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 > 7.0, c3 > 5.0, c1 <= 12.5, c2 > 1.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4985 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 > 7.0, c3 > 5.0, c1 <= 12.5, c2 > 1.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5003 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 > 1.5, c1 > 8.0, c5 > 5.0, c2 <= 10.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5009 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 <= 4.5, c5 > 8.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5032 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 3, c1 > 1.5, c4 > 2.0, c3 > 1.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5033 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 3, c1 > 1.5, c4 > 2.0, c3 > 1.5, c2 > 3.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5066 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 3, c1 <= 6.5, c2 > 3.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5070 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 3, c1 > 6.5, c4 > 1.0, c2 > 1.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5079 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 2, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5090 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 <= 5.0, c2 > 1.5, c3 > 2.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5098 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 > 5.0, c2 <= 11.5, c5 > 4.5, c3 <= 5.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5099 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 > 5.0, c2 <= 11.5, c5 > 4.5, c3 > 5.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5118 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 2, c1 <= 11.5, c2 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5126 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 <= 9.5, c5 > 3.0, c4 <= 13, c1 <= 6.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5128 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 <= 9.5, c5 > 3.0, c4 <= 13, c1 > 6.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5129 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 > 9.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5139 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 4, c4 > 1.0, c1 > 2.5, c3 > 2.5, c5 > 6.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5161 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 1, c4 <= 9.5, c1 <= 10.0, c5 > 5.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5162 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 1, c4 <= 9.5, c1 <= 10.0, c5 > 5.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5173 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 <= 8.0, c1 > 1.5, c3 > 3.0, c4 <= 10.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5230 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 <= 11.5, c4 > 3.0, c5 > 9.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5231 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 2, c3 <= 11.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5238 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 2, c3 > 11.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5239 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 <= 10.5, c1 <= 6.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5248 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 > 10.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5285 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 > 6.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5289 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 > 6.0, c2 > 3.5, c1 > 4.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5291 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c4 <= 13, c1 > 2.0, c5 <= 11.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5300 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c5 > 2.5, c1 > 1.0, c2 <= 10.0, c4 > 5.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5301 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c5 > 2.5, c1 > 1.0, c2 <= 10.0, c4 > 5.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5304 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c5 > 2.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5323 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 <= 12.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5327 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 <= 12.0, c5 <= 13, c2 > 2.0, c3 > 9.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5333 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c2 > 1.0, c4 > 1.0, c5 > 1.0, c1 > 11.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5349 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 <= 5.0, c3 <= 7.5, c1 <= 10.0, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5386 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 <= 11.5, c2 > 2.0, c4 <= 3.0, c1 > 6.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5394 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c2 > 7.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5397 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c2 <= 7.0, c4 > 2.0, c1 > 3.5, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5427 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c5 <= 12.5, c2 > 1.5, c1 <= 9.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5430 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c5 <= 12.5, c2 > 1.5, c1 > 9.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5431 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c5 <= 12.5, c2 > 1.5, c1 > 9.0, c3 <= 7.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5450 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 <= 8.5, c5 <= 10.0, c3 > 2.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5471 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c3 <= 12.0, c2 > 1.0, c1 > 1.0, c4 <= 13, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5493 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c4 <= 12.0, c5 > 11.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5504 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 <= 13, c3 <= 10.0, c5 <= 13, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5516 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 > 8.0, c2 > 1.5, c4 > 1.0, c1 > 5.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5565 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 <= 8.0, c2 <= 9.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5568 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 <= 8.0, c2 <= 9.5, c1 > 3.5, c3 > 9.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5584 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 > 5.0, c1 <= 5.5, c4 > 1.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5593 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 > 3.5, c5 <= 6.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5594 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 > 3.5, c5 <= 6.0, c3 > 4.0, c4 <= 10.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5618 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 > 1.0, c1 > 4.0, c2 > 5.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5639 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 <= 5.5, c1 > 5.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5643 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 <= 7.5, c2 > 5.0, c3 > 5.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5665 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 3, c1 > 2.0, c3 <= 13, c2 <= 12.0, c4 <= 12.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5680 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 1, c2 > 5.0, c5 > 7.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5685 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 4, c3 > 2.0, c5 > 1.5, c4 <= 6.5, c1 > 1.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5689 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 4, c3 > 2.0, c5 > 1.5, c4 > 6.5, c2 > 3.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5731 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5738 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c2 <= 13, c4 > 1.0, c3 > 9.5, c1 > 3.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5739 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c2 <= 13, c4 > 1.0, c3 > 9.5, c1 > 3.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5743 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 <= 7.5, c3 > 2.0, c2 > 3.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5786 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 > 11.0, c3 > 8.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5869 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c1 > 2.0, c2 > 3.5, c3 > 2.5, c5 > 3.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5878 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 <= 9.5, c5 > 8.5, c1 > 8.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5903 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 > 4.0, c4 > 2.5, c3 > 9.5, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5910 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 <= 4.0, c3 > 2.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5917 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 4.0, c4 > 4.5, c3 > 4.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5921 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 <= 9.0, c3 <= 12, c1 <= 4.5, c5 > 4.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5924 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 <= 9.0, c3 <= 12, c1 > 4.5, c4 > 2.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5927 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 > 9.0, c4 > 5.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5984 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c5 <= 3.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6002 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 <= 8.5, c1 > 1.0, c3 > 2.5, c5 <= 13, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6007 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 12.0, c1 <= 3.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6024 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6028 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c3 > 1.5, c2 > 1.0, c4 > 2.0, c1 <= 2.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6034 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c1 > 1.0, c4 > 1.5, c2 > 3.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6036 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c1 > 1.0, c4 > 1.5, c2 > 3.0, c3 > 1.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6039 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c4 > 2.0, c1 > 2.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6053 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c2 <= 13, c3 > 3.0, c4 <= 8.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6063 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 <= 2.0, c1 > 2.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6090 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 4, c5 > 3.0, c1 > 2.5, c2 > 3.5, c4 <= 11.0, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6102 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 > 10.0, c1 <= 12, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6125 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 4, c3 > 3.0, c4 <= 9.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6131 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 4, c3 > 3.0, c4 > 9.5, c1 <= 10.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6148 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 2, c4 > 3.5, c1 > 6.0, c5 > 1.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6163 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 > 7.0, c4 > 2.0, c2 <= 8.0, c3 > 2.0, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6178 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 <= 4.5, c1 <= 8.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6183 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 > 4.5, c4 <= 12.5, c1 > 5.0, c2 <= 9.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6196 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 2, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6236 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 <= 11.0, c3 <= 10.5, c5 > 1.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6245 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 > 11.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6288 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 > 9.0, c1 > 6.5, c2 > 3.0, c5 > 8.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6301 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 > 3.5, c2 <= 13, c1 > 4.5, c5 <= 11, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6319 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 11.0, c2 <= 11.5, c3 <= 9.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6322 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 > 1.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6341 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 > 7.0, c1 <= 11.5, c3 <= 4.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6366 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 <= 8.0, c5 <= 13, c2 <= 13, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6371 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 > 8.0, c2 > 2.5, c5 > 2.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6390 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 1.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6392 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 1.0, c3 <= 11.5, c5 <= 13, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6412 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 <= 10.0, c2 <= 2.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6420 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 <= 6.0, c1 > 1.5, c2 <= 11.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6439 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 > 9.0, c1 > 4.5, c2 > 7.0, c4 <= 12.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6450 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 <= 13, c3 > 8.0, c2 <= 9.0, c1 <= 12.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6496 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 9.0, c3 > 5.0, c4 > 5.5, c2 <= 11.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6503 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 > 3.5, c2 > 1.5, c3 > 1.0, c1 > 2.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6519 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c4 <= 12.5, c1 > 1.5, c2 > 2.0, c3 <= 11.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6528 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c2 > 1.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6542 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 <= 5.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6546 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 > 5.0, c2 <= 10.5, c3 > 6.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6557 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 > 6.0, c3 <= 11.0, c4 > 2.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6564 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 2, c4 > 2.0, c3 > 2.0, c5 <= 2.5, c1 > 1.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6602 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 <= 5.5, c3 > 5.5, c5 > 3.0, c2 > 1.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6607 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 > 5.5, c2 > 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6608 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 > 5.5, c2 > 2.5, c4 > 2.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6621 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 <= 11.5, c1 > 2.5, c4 <= 7.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6624 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 <= 11.5, c1 > 2.5, c4 > 7.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6635 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 3, c3 <= 12.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6645 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 2, c1 > 4.0, c3 <= 8.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6648 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 2, c1 > 4.0, c3 > 8.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6661 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 <= 9.0, c3 <= 9.5, c2 > 1.0, c4 > 3.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6664 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 <= 9.0, c3 > 9.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6702 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 <= 3.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6708 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 > 3.0, c3 > 1.0, c1 <= 2.5, c2 <= 13, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6715 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c3 <= 4.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6726 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c4 > 1.5, c1 > 2.5, c3 <= 10.0, c2 > 1.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6727 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c4 > 1.5, c1 > 2.5, c3 <= 10.0, c2 > 1.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6729 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c4 > 1.5, c1 > 2.5, c3 > 10.0, c5 > 6.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6736 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 <= 9.0, c3 <= 9.0, c1 <= 4.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6742 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 <= 9.0, c3 > 9.0, c1 <= 9.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6746 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 > 9.0, c1 > 2.0, c4 > 6.5, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6748 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6773 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c5 > 1.0, c1 <= 13, c3 <= 12.5, c2 <= 12.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6787 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c1 > 1.5, c5 > 1.5, c3 > 3.0, c4 > 3.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6792 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 > 7.0, c3 <= 8.0, c4 > 3.0, c2 <= 10.0, c5 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6806 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 4.5, c1 > 1.5, c2 > 5.5, c4 > 3.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6834 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 <= 7.5, c4 > 2.0, c5 > 9.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6849 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 > 7.0, c3 <= 6.5, c1 > 7.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6863 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6867 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 > 2.5, c2 <= 9.5, c1 > 5.0, c4 <= 9.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6869 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 > 2.5, c2 > 9.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6875 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c4 <= 3.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6892 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 3.5, c3 > 2.5, c5 <= 13, c1 <= 9.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6906 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 > 4.0, c5 > 3.0, c2 > 4.5, c3 <= 13, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6928 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 <= 10.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6942 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 > 8.0, c4 > 4.0, c1 <= 10.5, c5 > 6.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6966 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 2.0, c1 > 1.0, c4 <= 11.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6970 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 2.0, c1 > 1.0, c4 > 11.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6973 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6982 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 <= 6.0, c2 > 1.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6993 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6995 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c2 <= 11.5, c1 <= 10.0, c4 > 5.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7002 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c2 > 11.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7018 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c4 <= 5.0, c1 > 7.0, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7020 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c4 <= 5.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7026 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c4 > 5.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7059 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 > 4.0, c2 <= 8.0, c5 <= 9.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7067 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 10.5, c2 <= 11.5, c1 <= 11.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7069 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7088 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c1 > 1.0, c2 > 1.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7101 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 > 4.5, c5 <= 11, c4 <= 12.5, c1 > 6.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7116 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c3 <= 2.5, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7126 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 > 3.0, c1 <= 3.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7141 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 > 5.0, c1 > 2.0, c2 <= 9.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7157 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 > 4.0, c4 > 3.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7160 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 <= 11.0, c5 > 2.0, c1 > 2.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7166 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 <= 11.0, c5 <= 2.0, c2 > 1.5, c1 > 4.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7175 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 <= 12.0, c5 <= 10.5, c1 > 1.5, c2 > 5.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7186 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 > 1.0, c3 <= 11.5, c2 <= 12.0, c4 > 3.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7189 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 > 1.0, c3 <= 11.5, c2 > 12.0, c5 > 3.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7194 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 > 1.0, c4 <= 8.0, c3 > 3.5, c2 > 2.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7195 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 > 1.0, c4 <= 8.0, c3 > 3.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7207 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 <= 11.0, c3 <= 13, c1 > 2.0, c4 > 5.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7209 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 > 11.0, c3 <= 10.0, c1 <= 12, c4 <= 9.5, c5 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7220 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 <= 13, c1 > 2.5, c2 > 1.0, c4 > 9.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7237 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 > 8.5, c2 <= 8.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7239 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 <= 8.5, c3 <= 11.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7240 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 <= 8.5, c3 <= 11.0, c2 > 5.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7241 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 <= 8.5, c3 <= 11.0, c2 > 5.0, c1 > 4.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7247 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 3, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7259 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 <= 11.0, c5 > 1.0, c4 > 1.5, c2 <= 13, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7263 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 > 11.0, c2 > 6.5, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7285 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 4, c5 <= 13, c1 > 3.5, c4 <= 12, c3 > 7.5, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7302 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 > 7.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7320 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 <= 4.5, c3 <= 9.0, c1 > 5.5, c4 > 2.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7324 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 <= 4.5, c3 > 9.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7330 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 > 4.5, c2 > 1.5, c1 > 4.5, c4 > 4.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7336 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 3, c3 <= 13, c1 > 3.0, c4 <= 13, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7337 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 3, c3 <= 13, c1 > 3.0, c4 <= 13, c2 > 2.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7350 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 1, c4 <= 3.0, c1 > 1.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7357 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 1, c4 > 3.0, c3 > 1.5, c1 <= 11.5, c5 > 4.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7370 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 3, c5 > 1.5, c2 > 3.0, c1 <= 11.0, c3 <= 10.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7371 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 3, c5 > 1.5, c2 > 3.0, c1 <= 11.0, c3 > 10.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7401 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 > 5.5, c4 <= 12.5, c3 > 9.5, c1 > 4.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7407 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 <= 4.5, c1 > 2.5, c3 > 6.0, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7420 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 2, c5 <= 11.5, c1 <= 10.5, c2 > 2.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7427 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7439 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 4, c1 <= 9.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7445 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 4, c1 > 9.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7473 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 4, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7490 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 2, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7491 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 2, c1 > 1.0, c2 > 1.5, c3 > 2.0, c4 > 1.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7499 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 1, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7505 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 1, c2 > 3.0, c4 > 1.5, c1 <= 7.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7513 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 <= 8.0, c4 <= 5.0, c5 <= 8.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7521 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 > 8.0, c4 > 5.0, c5 <= 9.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7548 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 <= 9.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7563 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 <= 10.0, c2 <= 10.0, c3 <= 12.0, c5 <= 8.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7564 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 <= 10.0, c2 <= 10.0, c3 <= 12.0, c5 > 8.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7587 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 > 2.5, c3 > 2.5, c1 <= 11.5, c5 > 6.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7593 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 <= 10.0, c1 > 1.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7602 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 1, c3 <= 9.5, c1 <= 12.5, c4 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7605 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 1, c3 > 9.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7639 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 > 5.0, c2 > 3.0, c1 > 5.5, c3 > 3.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7644 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 4, c3 <= 6.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7645 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 4, c3 <= 6.5, c4 <= 8.5, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7650 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 4, c3 > 6.5, c1 > 1.0, c2 > 4.0, c4 <= 10.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7652 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 4, c3 > 6.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7659 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 3, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 > 3.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7663 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 2, c4 <= 13, c1 > 2.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7672 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 1, c1 <= 10.5, c2 > 1.5, c3 > 3.0, c4 <= 6.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7675 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 1, c1 <= 10.5, c2 > 1.5, c3 > 3.0, c4 > 6.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7701 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 1, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7704 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 1, c1 > 2.0, c5 > 2.0, c2 > 2.0, c3 > 1.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7705 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 1, c1 > 2.0, c5 > 2.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7709 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 4, c5 <= 3.0, c1 > 3.0, c2 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7717 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 > 2.0, c4 <= 12.0, c1 <= 10.0, c5 > 4.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7749 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 <= 2.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7760 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 <= 4.0, c1 <= 12.0, c4 <= 10.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7763 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 <= 4.0, c1 <= 12.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7771 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 <= 8.0, c1 <= 12, c4 > 3.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7773 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 > 8.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7782 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 > 1.0, c1 > 1.0, c2 > 8.0, c5 > 2.0, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7788 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 <= 7.5, c5 <= 9.0, c3 > 6.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7799 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 4, c3 > 1.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7807 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 <= 11.0, c3 > 1.0, c4 <= 9.0, c1 <= 12.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7819 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 <= 9.0, c1 <= 10.5, c3 > 5.5, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7846 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 > 6.5, c2 > 4.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7847 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 > 6.5, c2 > 4.0, c4 > 5.0, c3 > 4.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7873 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 <= 4.5, c3 > 1.0, c4 > 1.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7880 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 > 4.5, c3 > 3.0, c4 <= 8.0, c5 <= 4.0, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7884 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 > 4.5, c3 > 3.0, c4 > 8.0, c1 > 2.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7901 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 <= 3.5, c1 > 4.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7913 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 12.0, c3 > 2.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7921 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c4 > 1.0, c1 > 2.0, c2 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7930 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 > 2.0, c3 <= 12.5, c4 > 5.0, c1 > 2.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7973 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 <= 5.0, c3 > 1.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7992 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 <= 9.0, c3 > 3.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8023 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8027 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 <= 10.5, c3 > 2.0, c5 <= 11.5, c1 > 4.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8050 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 11.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8051 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c2 > 1.0, c5 <= 12.0, c4 <= 9.5, c3 <= 10.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8054 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c2 > 1.0, c5 <= 12.0, c4 <= 9.5, c3 > 10.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8063 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 <= 3.0, c2 > 1.0, c3 > 3.0, c4 > 6.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8077 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 > 7.0, c2 <= 6.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8097 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 <= 5.5, c2 <= 13, c1 <= 10.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8119 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 <= 7.5, c3 <= 7.5, c2 > 4.5, c4 > 5.0, c1 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8133 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 > 3.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8164 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c4 > 1.5, c1 > 3.0, c5 > 1.5, c2 <= 5.5, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8179 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c5 > 1.5, c3 > 1.0, c1 <= 11.0, c4 <= 13, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8198 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 <= 5.0, c3 > 3.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8206 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 3, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8239 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 > 5.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8242 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 > 5.5, c4 > 8.0, c5 > 4.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8248 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 <= 8.0, c4 <= 13, c3 <= 11.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8251 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 > 8.0, c4 <= 6.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8262 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 > 9.0, c2 <= 7.0, c5 > 1.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8287 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 <= 4.5, c3 > 4.0, c2 <= 6.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8290 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 > 4.5, c2 > 1.0, c4 <= 11.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8298 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 3, c4 <= 4.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8325 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 > 3.5, c3 <= 9.0, c1 > 6.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8332 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 13, c2 > 1.0, c5 > 11.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8340 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 <= 10.0, c1 > 3.0, c2 <= 13, c4 > 2.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8352 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 <= 11.5, c3 <= 3.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8363 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 1, c1 <= 12.0, c2 > 1.0, c4 <= 10.0, c3 > 3.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8377 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 > 4.5, c1 <= 7.0, c5 > 4.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8384 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 <= 12.0, c1 > 5.0, c2 > 1.0, c3 <= 9.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8385 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 <= 12.0, c1 > 5.0, c2 > 1.0, c3 <= 9.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8389 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8391 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 <= 10.0, c1 > 2.0, c4 <= 7.5, c2 <= 8.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8394 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 <= 10.0, c1 > 2.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8410 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c5 > 2.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8415 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c5 > 2.0, c2 > 2.5, c1 <= 9, c3 <= 11.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8418 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8419 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8420 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 > 8.5, c2 > 6.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8450 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 10.5, c2 <= 11.5, c1 <= 10.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8454 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 10.5, c2 <= 11.5, c1 > 10.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8459 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 > 2.0, c3 > 2.0, c4 > 2.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8469 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c3 <= 12, c2 > 1.0, c5 <= 13, c1 <= 8.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8471 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c3 <= 12, c2 > 1.0, c5 <= 13, c1 > 8.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8484 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 <= 7.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8519 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8528 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 <= 11.5, c4 <= 8.5, c1 <= 5.0, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8539 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 <= 5.0, c3 > 1.5, c1 <= 9.5, c5 > 1.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8545 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 > 5.0, c5 <= 10.0, c2 > 4.0, c3 > 1.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8555 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c3 <= 13, c1 > 2.5, c2 > 6.5, c4 > 7.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8561 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 <= 3.0, c4 > 3.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8567 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 <= 11.0, c4 > 1.5, c3 > 5.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8571 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 > 11.0, c4 > 1.5, c2 > 3.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8590 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 7.0, c3 > 7.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8609 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 <= 13, c1 > 8.0, c4 <= 10.5, c2 <= 12.5, c5 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8615 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c1 > 1.0, c3 > 1.5, c4 <= 13, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8652 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 > 3.0, c2 > 1.0, c1 <= 9.0, c5 > 5.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8653 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 > 3.0, c2 > 1.0, c1 <= 9.0, c5 > 5.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8656 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 > 3.0, c2 > 1.0, c1 > 9.0, c4 <= 8.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8667 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c4 <= 11.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8674 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 <= 11.0, c3 > 2.5, c1 <= 11.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8676 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 <= 11.0, c3 > 2.5, c1 <= 11.5, c4 > 5.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8698 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 <= 8.0, c1 <= 8.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8707 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 4, c2 > 1.0, c5 > 2.0, c1 > 1.5, c3 > 2.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8708 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 4, c2 > 1.0, c5 > 2.0, c1 > 1.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8714 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 <= 2.5, c3 <= 11.0, c2 > 4.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8724 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 <= 5.0, c3 <= 12.5, c4 > 4.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8733 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 > 2.0, c4 <= 3.0, c5 > 1.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8755 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 3, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8759 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 3, c1 > 3.0, c2 <= 8.0, c3 > 4.0, c4 > 2.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8764 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 2, c3 > 2.0, c4 > 1.0, c1 <= 7.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8792 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 > 8.0, c5 <= 13, c3 > 3.0, c2 <= 12.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8808 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c4 > 2.0, c5 > 6.0, c1 > 7.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8844 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 <= 10.0, c2 > 2.0, c1 > 7.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8846 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 <= 10.0, c2 > 2.0, c1 <= 7.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8857 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 <= 10.0, c1 <= 10.0, c3 > 3.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8865 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 > 10.0, c1 > 5.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8885 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 > 3.5, c3 <= 11.5, c4 > 10.0, c1 > 4.5, c2 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8892 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 2, c2 > 1.0, c4 <= 12.0, c5 > 9.0, c3 > 4.0, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8897 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 <= 8.0, c4 > 2.0, c5 > 1.0, c2 > 1.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8903 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 > 8.0, c3 > 2.5, c2 <= 10.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8905 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 > 8.0, c3 > 2.5, c2 <= 10.0, c4 > 4.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8911 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 4, c4 <= 11.0, c5 > 2.0, c1 > 2.0, c2 > 1.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8914 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 4, c4 <= 11.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8950 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 4, c1 <= 10.0, c2 > 2.0, c3 > 2.0, c4 > 3.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8954 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 4, c1 > 10.0, c3 > 2.0, c4 > 7.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8957 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 3, c3 <= 4.5, c1 <= 8.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8961 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 3, c3 > 4.5, c1 > 7.0, c2 > 1.5, c4 > 2.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8965 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 <= 5.0, c2 <= 4.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9028 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 > 4.0, c4 > 5.5, c2 > 1.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9035 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 > 4.0, c4 <= 5.5, c2 > 2.0, c1 > 4.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9048 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c2 <= 13, c3 <= 10.0, c4 > 1.0, c1 > 5.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9051 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c2 <= 13, c3 > 10.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9053 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 <= 9.5, c2 > 1.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9066 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c2 <= 5.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9069 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c2 <= 5.0, c3 <= 9.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9117 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 > 2.5, c5 > 3.0, c2 <= 9.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9132 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.5, c1 > 1.0, c2 > 2.0, c3 <= 7.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9138 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c2 <= 13, c5 > 1.0, c3 > 5.5, c4 > 2.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9142 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c2 <= 13, c5 > 1.0, c3 <= 5.5, c4 > 3.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9152 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 7.0, c4 <= 8.5, c2 > 6.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9178 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 > 13, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9214 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 <= 11.5, c1 > 3.0, c2 > 2.5, c3 > 5.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9273 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9276 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 <= 12.0, c5 <= 9.0, c3 <= 8.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9277 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 <= 12.0, c5 <= 9.0, c3 > 8.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9292 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 > 7.0, c1 > 4.5, c2 > 3.5, c5 > 4.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9327 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 > 11.0, c5 > 2.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9346 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 <= 11.5, c1 > 2.5, c2 <= 11.0, c3 > 7.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9348 poker_hand = 2 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 <= 11.5, c1 > 2.5, c2 <= 11.0, c3 <= 7.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9369 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 <= 10.5, c4 > 1.5, c2 > 7.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9400 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 2, c1 > 1.0, c3 > 1.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9414 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 > 3.0, c2 <= 12.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9419 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 4, c1 <= 11.5, c3 <= 4.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9420 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 4, c1 <= 11.5, c3 <= 4.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9423 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 4, c1 <= 11.5, c3 > 4.0, c4 <= 11, c2 > 5.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9440 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 > 2.0, c1 <= 12.5, c2 <= 10.0, c4 <= 6.0, c5 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9442 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 > 2.0, c1 <= 12.5, c2 <= 10.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9454 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 <= 4.5, c2 > 2.5, c1 > 3.0, c3 <= 11, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9476 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 <= 6.5, c3 <= 4.0, c1 > 2.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9478 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 <= 6.5, c3 > 4.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9485 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 > 6.5, c1 > 10.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9492 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 > 4.0, c2 <= 5.0, c5 > 7.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9496 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 > 4.0, c2 > 5.0, c4 > 2.5, c3 > 5.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9511 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 4, c5 <= 12.5, c1 <= 11.5, c2 <= 6.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9521 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 3, c2 > 1.5, c1 > 1.0, c4 <= 11.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9526 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 2, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9544 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 > 9.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9572 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 2, c4 <= 13, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9581 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 > 8.0, c2 > 5.0, c3 > 7.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9595 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 3, c1 > 3.0, c5 <= 10.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9622 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 4, c3 > 2.0, c1 <= 9.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9631 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 3, c1 <= 4.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9637 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 3, c1 > 4.0, c2 > 2.5, c5 <= 8.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9651 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 > 9.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9654 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 1, c2 > 1.0, c4 <= 11, c1 > 4.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9656 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 1, c2 > 1.0, c4 <= 11, c1 > 4.0, c3 > 3.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9663 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 4, c3 > 4.5, c1 > 1.5, c5 <= 13, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9683 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 > 2.0, c2 <= 7.5, c1 > 2.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9691 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 > 2.0, c2 > 7.5, c1 <= 11.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9703 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 > 2.0, c5 <= 2.5, c3 > 2.5, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9719 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 2, c1 > 10.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9727 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 1, c4 > 1.0, c2 > 1.5, c5 > 6.0, c1 > 3.5, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9757 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 > 5.0, c3 > 1.0, c5 <= 11.0, c2 > 4.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9798 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 1, c3 > 1.0, c1 > 2.5, c2 <= 12, c4 > 4.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9801 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 4, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9803 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 4, c2 > 3.0, c1 > 1.5, c3 <= 6.5, c4 <= 10.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9806 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 4, c2 > 3.0, c1 > 1.5, c3 > 6.5, c5 > 5.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9810 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 > 7.0, c1 <= 12.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9821 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 <= 7.0, c3 > 3.5, c1 > 8.0, c4 <= 9.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9825 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 > 5.5, c1 <= 9.0, c4 > 7.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9846 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c1 > 4.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9848 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c1 > 4.0, c3 > 1.5, c4 <= 9.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9856 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 > 2.0, c2 <= 13, c4 > 3.0, c1 <= 11.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9884 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 > 3.0, c1 > 2.0, c3 > 2.5, c2 <= 4.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9888 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 <= 4.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9902 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 3, c2 > 2.5, c4 <= 10.0, c1 > 1.5, c3 <= 11.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9908 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 <= 4.5, c1 > 6.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9924 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 <= 9.0, c3 > 5.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9928 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 > 9.0, c3 > 3.5, c5 > 3.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9948 poker_hand = 3 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 > 1.0, c3 > 11.0, c5 > 7.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9950 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 > 1.0, c3 > 11.0, c5 <= 7.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9970 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 <= 11.5, c2 > 10.0, c1 > 2.5, c3 > 2.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9975 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 4, c1 <= 3.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9980 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 4, c1 > 3.0, c3 > 3.0, c2 > 3.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9989 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 2, c2 > 2.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10021 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 3, c2 > 1.0, c1 <= 13, c3 > 9.0, c4 > 2.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10027 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 <= 5.0, c3 > 1.5, c2 > 6.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10042 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 1, c4 <= 11.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10047 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 <= 12.5, c5 <= 10.0, c1 > 4.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10073 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 <= 11.5, c1 <= 13, c3 > 1.5, c2 > 10.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10091 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 4, c1 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10098 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 3, c5 > 4.0, c4 <= 9.5, c3 > 3.0, c1 <= 7.0, c2 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10099 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 3, c5 > 4.0, c4 > 9.5, c1 <= 8.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10110 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 1, c5 <= 9.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10114 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 1, c5 <= 9.0, c2 > 1.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10117 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 1, c5 > 9.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10121 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 > 2.0, c4 <= 9.5, c2 > 1.0, c3 > 3.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10126 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 > 2.0, c4 > 9.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10147 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 1, c4 > 7.0, c1 <= 11.5, c2 > 1.5, c3 > 6.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10166 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 <= 10.5, c1 <= 11.5, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10169 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 > 10.5, c2 <= 7.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10178 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 > 6.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10182 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 > 6.5, c3 > 2.5, c4 > 3.5, c1 <= 9.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10185 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 <= 9.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10189 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 <= 9.5, c2 > 6.0, c5 <= 7.0, c1 <= 6.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10192 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 > 9.5, c1 > 5.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10211 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 > 5.0, c3 > 7.0, c4 > 2.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10223 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 2, c1 <= 12.5, c5 > 2.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10238 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 > 8.0, c2 > 2.0, c4 > 10.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10254 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 3, c4 <= 12.0, c1 > 2.0, c5 <= 10.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10261 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 <= 11.0, c3 <= 12.0, c1 > 6.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10276 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 > 4.5, c1 > 1.5, c3 > 2.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10292 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 4, c5 > 2.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10293 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 <= 11.0, c3 > 2.0, c5 <= 6.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10294 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 <= 11.0, c3 > 2.0, c5 <= 6.0, c1 > 6.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10295 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 <= 11.0, c3 > 2.0, c5 <= 6.0, c1 > 6.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10302 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 > 11.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10303 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 > 11.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10304 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 2, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10307 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 2, c1 > 5.0, c2 <= 11.0, c3 > 2.5, c4 > 8.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10315 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 > 3.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10316 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 > 3.0, c3 > 3.0, c4 <= 6.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10329 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 > 3.0, c4 <= 12.5, c5 <= 5.5, c1 <= 8.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10358 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 1, c2 > 2.0, c1 > 1.5, c3 > 4.0, c4 > 6.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10359 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 1, c2 > 2.0, c1 > 1.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10386 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 <= 8.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10408 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 > 2.0, c1 > 4.0, c2 > 5.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10422 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 4, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10423 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 <= 10.0, c2 > 1.0, c5 <= 5.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10426 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 <= 10.0, c2 > 1.0, c5 > 5.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10447 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 1, c2 > 1.5, c4 <= 6.5, c3 <= 11.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10455 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 4, c2 > 3.0, c4 > 4.0, c1 > 6.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10456 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 3, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10462 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 3, c4 > 3.0, c1 > 3.0, c5 <= 8.5, c3 > 3.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10463 poker_hand = 1 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 3, c4 > 3.0, c1 > 3.0, c5 <= 8.5, c3 > 3.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10465 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 2, c1 <= 5.5, c2 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10467 poker_hand = 0 classifying 3.0 num of facts with rank:1.1995201919232307E-4" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 2, c1 > 5.5, c2 <= 7.5, c5 <= 11.0, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#0 poker_hand = 5 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 4, c5 <= 12.5, c3 <= 12.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#8 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 3, c4 > 3.0, c1 <= 9.5, c2 <= 12.5, c3 <= 7.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#16 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 2, c5 > 1.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#21 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 1, c4 <= 8.0, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#31 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 > 8.5, c2 > 2.5, c1 > 7.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#37 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 <= 8.5, c5 > 4.5, c1 > 8.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#45 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 2, c2 > 1.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#46 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 2, c2 > 1.0, c5 > 1.5, c1 <= 10.0, c3 <= 10.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#49 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 2, c2 > 1.0, c5 > 1.5, c1 <= 10.0, c3 > 10.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#51 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 2, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#54 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 > 7.0, c3 <= 8.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#56 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 <= 7.0, c5 > 4.0, c2 > 2.0, c3 > 2.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#60 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 <= 7.0, c5 > 4.0, c2 <= 2.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#65 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 <= 11.0, c4 > 2.5, c2 <= 9.0, c1 <= 8.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#70 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 > 11.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#77 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 3, c5 > 2.0, c2 > 6.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#78 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 3, c5 > 2.0, c2 > 6.0, c1 > 3.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#83 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 2, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#84 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 2, c4 > 3.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#88 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 2, c4 > 3.0, c5 <= 11.5, c1 > 7.5, c2 > 6.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#91 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 1, c5 > 3.0, c3 <= 12.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#92 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 1, c5 > 3.0, c3 <= 12.5, c1 > 2.5, c2 <= 12.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#96 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 1, c5 > 3.0, c3 > 12.5, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#98 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 <= 2.5, c2 <= 10.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#105 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 <= 11.0, c3 <= 5.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#116 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 > 4.5, c4 > 2.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#118 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 > 4.5, c4 > 2.0, c3 > 4.0, c1 > 3.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#120 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 > 4.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#129 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 > 5.0, c1 > 4.5, c4 <= 9.0, c3 > 8.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#133 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 > 5.0, c1 > 4.5, c4 > 9.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#141 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 <= 9.0, c3 > 4.0, c1 > 3.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#144 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 > 9.0, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#146 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 > 8.0, c1 > 6.5, c2 <= 12.5, c3 > 2.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#148 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 > 8.0, c1 > 6.5, c2 <= 12.5, c3 <= 2.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#154 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 <= 7.5, c4 > 3.0, c3 > 8.5, c5 <= 7.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#155 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 <= 7.5, c4 > 3.0, c3 > 8.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#163 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 > 7.5, c5 > 7.5, c1 > 8.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#168 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 3, c1 > 2.5, c2 <= 7.5, c3 <= 13, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#169 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 3, c1 > 2.5, c2 <= 7.5, c3 <= 13, c5 > 2.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#179 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 > 7.0, c1 > 1.5, c3 > 8.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#185 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 <= 7.0, c3 > 3.5, c1 > 3.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#186 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 <= 7.0, c3 > 3.5, c1 > 3.5, c2 > 5.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#189 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 1, c1 > 3.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#190 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 1, c1 > 3.0, c2 > 1.5, c4 <= 10.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#192 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 1, c1 > 3.0, c2 > 1.5, c4 <= 10.5, c3 > 2.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#198 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 4, c1 > 1.5, c4 > 11.5, c3 > 5.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#200 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 4, c1 > 1.5, c4 <= 11.5, c2 > 2.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#203 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 4, c1 > 1.5, c4 <= 11.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#205 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 3, c5 <= 13, c2 <= 3.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#215 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 2, c1 > 1.0, c3 > 2.5, c5 <= 3.0, c2 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#217 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 2, c1 > 1.0, c3 > 2.5, c5 > 3.0, c2 <= 3.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#219 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 2, c1 > 1.0, c3 > 2.5, c5 > 3.0, c2 > 3.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#222 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 1, c1 > 11.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#225 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 1, c1 <= 11.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#228 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 1, c1 <= 11.5, c5 > 4.0, c2 > 4.5, c3 <= 2.5, c4 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#230 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 1, c1 <= 11.5, c5 > 4.0, c2 > 4.5, c3 > 2.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#231 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 > 7.0, c4 > 2.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#234 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 > 7.0, c4 > 2.0, c5 > 5.5, c2 > 5.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#245 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 <= 5.0, c1 <= 11.0, c2 > 1.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#251 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 > 5.0, c3 > 1.0, c2 > 1.0, c1 <= 6.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#253 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 > 5.0, c3 > 1.0, c2 > 1.0, c1 > 6.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#272 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 1, c1 <= 13, c2 <= 13, c4 > 1.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#273 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 1, c1 <= 13, c2 <= 13, c4 > 1.5, c3 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#281 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 4, c1 <= 11.0, c4 > 12.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#287 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 3, c3 <= 12, c1 > 2.0, c4 <= 11.0, c5 > 5.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#288 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 3, c3 <= 12, c1 > 2.0, c4 > 11.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#290 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 3, c3 <= 12, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#292 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 <= 12.0, c3 > 1.0, c4 <= 11.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#294 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 <= 12.0, c3 > 1.0, c4 > 11.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#297 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 <= 12.0, c3 <= 1.0, c4 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#302 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 <= 12.5, c2 > 2.0, c4 > 2.0, c3 <= 7.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#306 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 <= 12.5, c2 > 2.0, c4 <= 2.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#307 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 <= 12.5, c2 > 2.0, c4 <= 2.0, c3 > 8.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#309 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 <= 12.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#315 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 4, c2 > 3.5, c1 <= 11.0, c5 <= 12.0, c3 > 4.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#316 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 4, c2 > 3.5, c1 <= 11.0, c5 <= 12.0, c3 > 4.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#322 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 3, c2 > 1.0, c1 <= 3.0, c3 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#324 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 3, c2 > 1.0, c1 > 3.0, c3 > 2.0, c4 <= 12.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#327 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 3, c2 > 1.0, c1 > 3.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#330 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 2, c1 > 2.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#331 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 2, c1 > 2.5, c5 > 3.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#337 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 > 5.5, c2 > 4.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#347 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 <= 5.5, c4 > 2.0, c1 <= 9.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#348 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 <= 5.5, c4 > 2.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#352 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 4, c3 <= 13, c5 <= 13, c2 > 1.0, c1 <= 3.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#356 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 4, c3 <= 13, c5 <= 13, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#364 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 3, c2 > 1.0, c3 > 1.5, c1 > 12.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#366 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 <= 3.0, c1 > 8.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#369 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 <= 3.0, c1 <= 8.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#374 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 > 3.0, c3 > 2.5, c1 > 2.0, c2 > 2.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#379 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 1, c1 > 1.0, c3 > 1.5, c4 <= 10.0, c5 <= 7.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#384 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 1, c1 > 1.0, c3 > 1.5, c4 > 10.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#387 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 4, c4 > 1.5, c1 > 1.0, c2 > 2.0, c3 <= 2.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#389 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 4, c4 > 1.5, c1 > 1.0, c2 > 2.0, c3 > 2.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#391 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 4, c4 > 1.5, c1 > 1.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#394 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 3, c3 > 12, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#395 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 3, c3 > 12, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#399 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 3, c3 <= 12, c4 > 1.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#403 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 <= 9.0, c3 <= 4.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#407 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 <= 9.0, c3 > 4.0, c4 > 1.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#413 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 > 9.0, c2 > 4.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#419 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 <= 5.5, c1 > 2.0, c4 > 3.0, c2 > 4.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#424 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 > 5.5, c5 <= 8.0, c4 > 1.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#427 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 > 5.5, c5 > 8.0, c2 > 6.0, c4 <= 11.0, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#429 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 > 5.5, c5 > 8.0, c2 > 6.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#433 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 4, c4 > 1.0, c3 > 2.0, c1 > 3.0, c2 > 8.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#435 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 4, c4 > 1.0, c3 > 2.0, c1 > 3.0, c2 <= 8.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#441 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 3, c3 > 1.0, c4 > 2.0, c1 > 3.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#446 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 <= 12.5, c4 > 12, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#448 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 <= 12.5, c4 <= 12, c2 <= 2.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#451 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 <= 12.5, c4 <= 12, c2 > 2.5, c3 > 2.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#457 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 <= 12.0, c2 <= 3.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#458 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 <= 12.0, c2 <= 3.0, c1 > 5.5, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#459 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 <= 12.0, c2 <= 3.0, c1 > 5.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#466 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 > 12.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#468 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 4, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#472 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 4, c5 > 3.5, c2 > 1.5, c1 > 11.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#473 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 4, c5 > 3.5, c2 > 1.5, c1 <= 11.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#474 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 4, c5 > 3.5, c2 > 1.5, c1 <= 11.5, c4 > 5.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#476 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 3, c1 <= 12.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#477 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 3, c1 <= 12.0, c2 > 3.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#485 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 > 11.5, c1 <= 6.5, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#490 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 <= 11.5, c4 <= 11, c5 <= 6.0, c1 > 1.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#491 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 <= 11.5, c4 <= 11, c5 > 6.0, c3 <= 12.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#493 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 <= 11.5, c4 <= 11, c5 > 6.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#494 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 1, c3 <= 10.0, c1 <= 12.5, c2 > 2.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#496 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 1, c3 <= 10.0, c1 <= 12.5, c2 > 2.0, c4 > 1.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#497 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 1, c3 <= 10.0, c1 <= 12.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#498 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 1, c3 <= 10.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#503 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 <= 11.0, c1 <= 4.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#507 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 > 11.0, c5 > 3.0, c1 > 7.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#509 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 > 11.0, c5 > 3.0, c1 <= 7.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#524 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 2, c4 > 1.0, c5 <= 13, c3 > 12.0, c1 <= 10.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#529 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 <= 6.5, c1 > 5.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#534 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 > 6.5, c1 > 2.0, c2 > 8.5, c3 <= 10.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#536 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 > 6.5, c1 > 2.0, c2 > 8.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#539 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 4, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#541 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 <= 12.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#544 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 > 12.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#546 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 <= 8.0, c1 <= 10.5, c5 <= 8.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#549 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 <= 8.0, c1 <= 10.5, c5 > 8.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#551 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 <= 8.0, c1 > 10.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#553 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 <= 8.0, c1 > 10.5, c2 > 8.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#559 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 > 8.0, c1 <= 8.0, c2 > 1.5, c4 > 3.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#564 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 <= 9.5, c4 <= 11.0, c2 <= 12.5, c3 <= 3.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#568 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 <= 9.5, c4 > 11.0, c2 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#573 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 > 9.5, c2 > 1.0, c3 <= 4.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#580 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 > 8.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#585 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 <= 8.5, c4 <= 7.0, c2 > 3.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#588 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 <= 4.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#590 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 <= 4.0, c1 > 5.5, c3 > 5.5, c4 > 3.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#595 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 > 4.0, c5 > 5.5, c1 <= 9.5, c3 > 5.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#604 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 <= 6.5, c1 > 1.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#612 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 > 6.5, c1 > 4.0, c4 <= 6.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#618 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 2, c5 <= 11.5, c4 > 1.0, c2 <= 6.5, c1 > 8.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#620 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 2, c5 <= 11.5, c4 > 1.0, c2 > 6.5, c3 <= 11.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#621 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 2, c5 <= 11.5, c4 > 1.0, c2 > 6.5, c3 <= 11.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#625 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 1, c2 > 11.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#626 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 1, c2 <= 11.5, c1 > 1.0, c3 <= 4.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#630 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 1, c2 <= 11.5, c1 > 1.0, c3 > 4.5, c4 > 4.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#636 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 10.5, c1 > 6.5, c5 <= 7.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#637 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 10.5, c1 > 6.5, c5 <= 7.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#642 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 <= 1.0, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#646 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 3, c5 <= 13, c3 <= 10.0, c2 > 8.5, c4 > 2.5, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#649 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 3, c5 <= 13, c3 <= 10.0, c2 <= 8.5, c4 <= 4.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#651 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 3, c5 <= 13, c3 > 10.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#662 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 <= 1.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#672 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 > 1.5, c5 > 6.5, c4 > 8.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#677 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 > 3.0, c4 <= 4.0, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#682 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 > 3.0, c4 > 4.0, c2 <= 7.5, c5 > 4.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#685 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 > 3.0, c4 > 4.0, c2 > 7.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#686 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 3, c3 <= 3.5, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#688 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 3, c3 > 3.5, c2 <= 12.5, c5 <= 10.0, c4 <= 10.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#690 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 3, c3 > 3.5, c2 <= 12.5, c5 <= 10.0, c4 > 10.5, c1 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#695 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 > 11.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#699 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 <= 11.5, c4 <= 2.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#713 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 4, c4 > 1.0, c3 > 2.0, c5 <= 12.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#715 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 4, c4 > 1.0, c3 > 2.0, c5 <= 12.5, c1 > 2.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#716 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 4, c4 > 1.0, c3 > 2.0, c5 > 12.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#720 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 4, c4 <= 1.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#723 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 3, c2 > 3.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#728 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 3, c2 > 3.5, c4 > 3.0, c5 > 3.5, c3 <= 7.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#730 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 > 8.5, c1 <= 11.0, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#733 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 > 8.5, c1 <= 11.0, c2 > 9.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#736 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 <= 8.5, c1 <= 9.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#737 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 <= 8.5, c1 <= 9.0, c2 > 3.0, c3 <= 3.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#745 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 <= 3.0, c4 <= 9.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#749 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 > 3.0, c4 > 11.5, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#751 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 > 3.0, c4 <= 11.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#758 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 > 8.5, c1 > 2.5, c5 <= 4.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#764 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 <= 8.5, c3 > 1.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#767 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 <= 8.5, c3 > 1.5, c2 > 1.5, c1 > 10.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#774 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 3, c5 > 2.0, c1 > 12.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#776 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 <= 4.0, c3 > 7.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#778 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 <= 4.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#780 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 > 4.0, c4 <= 5.0, c3 <= 11.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#785 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 > 4.0, c4 > 5.0, c3 > 10.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#794 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 4, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#796 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 4, c1 > 1.0, c2 > 1.5, c4 <= 12.0, c3 <= 4.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#807 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 <= 9.0, c1 > 2.0, c3 > 2.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#817 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 2, c1 <= 12.0, c3 <= 11.5, c2 > 3.5, c5 > 2.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#822 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 <= 3.0, c1 > 6.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#823 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 <= 3.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#826 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 > 3.0, c1 <= 4.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#828 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 > 3.0, c1 > 4.5, c3 <= 10.0, c4 > 9.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#832 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 <= 11.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#834 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 <= 11.0, c4 > 1.5, c3 <= 5.0, c1 > 1.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#844 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 > 11.5, c1 > 5.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#846 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 > 11.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#847 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 <= 11.5, c3 > 2.0, c1 <= 6.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#850 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 <= 11.5, c3 > 2.0, c1 > 6.5, c4 <= 10, c5 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#862 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 2, c3 > 2.5, c5 > 12.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#864 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 1, c1 <= 6.5, c3 <= 6.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#870 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 1, c1 > 6.5, c5 <= 9.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#873 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 4, c2 <= 12.5, c4 > 1.0, c5 > 1.0, c1 <= 13, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#881 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 3, c5 <= 12.0, c1 > 7.0, c2 <= 10.0, c3 <= 11.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#884 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 3, c5 <= 12.0, c1 > 7.0, c2 > 10.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#885 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 3, c5 <= 12.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#887 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 3, c5 > 12.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#892 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 <= 6.0, c1 > 5.0, c5 > 4.0, c3 > 3.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#895 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 <= 10.0, c1 > 1.0, c3 > 9.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#904 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 > 5.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#909 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 <= 5.5, c1 > 8.5, c3 > 3.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#913 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 <= 5.5, c1 <= 8.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#919 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 4, c5 <= 13, c2 <= 11.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#926 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 > 1.0, c1 > 1.5, c3 <= 10.5, c4 <= 6.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#937 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 <= 10.5, c3 <= 9.0, c5 > 2.0, c4 > 9.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#939 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 <= 10.5, c3 > 9.0, c4 > 6.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#953 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 12.5, c2 <= 11.5, c4 > 11.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#954 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 12.5, c2 <= 11.5, c4 > 11.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#959 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 <= 5.0, c1 <= 11.0, c3 > 1.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#966 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 > 5.0, c1 > 2.0, c3 > 1.0, c5 <= 10.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#978 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 <= 9.5, c2 > 1.0, c1 > 10.0, c5 > 3.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#982 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 > 9.5, c5 > 5.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#983 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 > 9.5, c5 > 5.0, c1 > 6.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#992 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 <= 10.0, c1 > 10.0, c2 <= 3, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#996 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 > 10.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1001 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 1, c1 > 1.0, c2 > 1.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1002 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 1, c1 > 1.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1010 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 <= 7.5, c5 <= 10.0, c3 > 4.0, c1 > 4.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1011 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 <= 7.5, c5 > 10.0, c3 > 6.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1015 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 > 7.5, c1 <= 12.0, c3 <= 10.5, c4 <= 7.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1024 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 3, c3 <= 5.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1030 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 <= 8.0, c2 <= 5.0, c1 > 5.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1042 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 <= 6.0, c2 > 5.0, c4 <= 8.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1045 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 > 6.0, c2 > 1.0, c3 <= 11.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1047 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 > 6.0, c2 > 1.0, c3 > 11.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1059 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 > 4.5, c5 > 10.0, c3 > 1.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1060 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 > 4.5, c5 > 10.0, c3 > 1.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1064 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 <= 3.0, c1 <= 10.5, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1067 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 > 3.0, c4 > 2.0, c2 > 7.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1087 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 > 4.0, c1 > 1.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1090 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 > 4.0, c1 > 1.5, c4 > 3.0, c3 > 2.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1093 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 > 13, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1096 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 <= 13, c2 > 11.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1100 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 <= 13, c2 <= 11.5, c3 > 1.0, c4 > 1.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1106 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 <= 11.0, c1 > 1.5, c5 > 11.5, c3 > 3.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1109 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 <= 11.0, c1 > 1.5, c5 <= 11.5, c3 <= 10.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1111 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 <= 11.0, c1 > 1.5, c5 <= 11.5, c3 > 10.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1117 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 <= 12.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1123 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 <= 12.5, c2 > 1.5, c5 > 2.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1128 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 1, c2 <= 3.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1129 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 1, c2 > 3.5, c1 > 2.0, c3 > 2.0, c4 <= 12.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1131 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 1, c2 > 3.5, c1 > 2.0, c3 > 2.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1143 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 <= 10.0, c5 <= 1.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1144 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 > 10.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1152 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 <= 9.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1171 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 1, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1176 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 1, c1 > 1.5, c2 > 1.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1181 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 > 2.0, c2 > 1.5, c5 <= 10.5, c3 <= 4.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1182 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 > 2.0, c2 > 1.5, c5 <= 10.5, c3 <= 4.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1185 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 > 2.0, c2 > 1.5, c5 > 10.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1193 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 3, c5 <= 12.5, c1 > 1.0, c2 > 2.5, c3 > 9.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1201 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 <= 6.5, c2 > 3.5, c1 > 2.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1209 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 > 6.5, c5 > 1.5, c3 > 3.0, c1 > 4.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1211 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 > 2.0, c3 <= 9.0, c4 <= 9.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1223 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 4, c4 > 1.0, c2 > 11.5, c1 <= 7.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1225 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 4, c4 > 1.0, c2 <= 11.5, c5 <= 6.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1232 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 3, c3 <= 12.0, c1 > 2.0, c2 <= 3.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1234 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 3, c3 <= 12.0, c1 > 2.0, c2 > 3.5, c5 > 1.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1235 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 3, c3 <= 12.0, c1 > 2.0, c2 > 3.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1238 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 3, c3 > 12.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1251 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1255 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 > 1.5, c1 <= 8.5, c4 > 1.0, c3 > 11.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1262 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 > 7.0, c5 <= 10.5, c1 <= 10.5, c4 <= 10.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1265 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 > 7.0, c5 <= 10.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1270 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 <= 7.0, c1 > 7.0, c4 <= 10.0, c3 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1276 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 <= 5.0, c4 <= 9.5, c1 > 7.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1277 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 <= 5.0, c4 <= 9.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1278 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 <= 5.0, c4 > 9.5, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1285 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 > 5.0, c2 <= 11.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1291 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 2, c5 > 1.5, c2 <= 12.5, c3 > 3.0, c1 > 3.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1293 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 2, c5 > 1.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1294 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 <= 5.0, c2 > 7.0, c3 <= 6.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1300 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 > 5.0, c3 <= 8.0, c5 <= 4.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1310 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 4, c3 <= 8.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1313 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 > 2.0, c3 > 4.0, c5 <= 6.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1316 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 > 2.0, c3 > 4.0, c5 > 6.0, c1 <= 4.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1321 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 2, c2 <= 12.0, c3 > 1.0, c4 > 11.5, c1 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1332 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 1, c2 <= 13, c3 <= 12.0, c1 <= 2.5, c4 <= 9.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1338 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 1, c2 <= 13, c3 > 12.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1350 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 3, c4 > 3.5, c1 > 2.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1351 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 3, c4 > 3.5, c1 > 2.5, c5 > 3.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1353 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 3, c4 > 3.5, c1 > 2.5, c5 > 3.5, c2 > 1.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1359 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 > 3.0, c4 > 2.0, c3 > 3.0, c1 <= 2.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1369 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 > 5.5, c2 > 6.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1371 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 > 5.5, c2 > 6.5, c1 > 6.0, c3 <= 10.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1376 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 <= 5.5, c5 > 6.5, c3 > 2.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1379 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 <= 11.0, c4 > 7.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1383 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 <= 11.0, c4 <= 7.0, c3 <= 12.5, c1 > 10.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1386 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 > 11.0, c3 > 7.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1399 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 > 12.0, c1 > 3.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1410 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 2, c1 > 1.5, c4 <= 11.5, c2 <= 2.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1418 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 <= 2.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1424 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 <= 9.0, c3 > 1.5, c5 <= 9.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1434 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1436 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 <= 3.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1444 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 > 3.0, c2 <= 12.5, c1 > 3.0, c3 > 2.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1447 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 2, c5 > 1.5, c1 <= 11.0, c2 > 1.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1448 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 2, c5 > 1.5, c1 <= 11.0, c2 > 1.0, c3 <= 13, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1454 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 2, c5 > 1.5, c1 > 11.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1458 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 <= 13, c1 > 7.0, c5 <= 3.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1461 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 <= 13, c1 > 7.0, c5 > 3.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1462 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 <= 13, c1 <= 7.0, c5 > 2.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1469 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 <= 5.0, c1 > 4.5, c4 > 2.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1470 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 <= 5.0, c1 > 4.5, c4 > 2.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1471 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 <= 5.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1475 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 > 5.0, c1 > 2.5, c4 > 1.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1477 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 <= 3.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1486 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 > 3.0, c5 <= 11.5, c1 <= 12, c3 > 3.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1494 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 > 7.0, c3 > 12.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1506 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 <= 3.5, c5 > 3.5, c3 > 2.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1509 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 <= 6.0, c2 <= 4.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1510 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 <= 6.0, c2 <= 4.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1512 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 <= 6.0, c2 > 4.0, c4 <= 8.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1513 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 <= 6.0, c2 > 4.0, c4 > 8.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1515 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 > 6.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1518 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 > 6.0, c2 > 3.0, c5 > 1.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1519 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 <= 9.0, c1 > 11.5, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1522 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 <= 9.0, c1 <= 11.5, c2 > 6.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1534 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 <= 4.0, c4 > 3.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1538 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 > 4.0, c5 > 4.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1550 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 1, c1 > 1.5, c3 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1552 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 1, c1 > 1.5, c3 > 1.0, c2 > 1.5, c4 > 1.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1553 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 1, c1 > 1.5, c3 > 1.0, c2 > 1.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1557 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 <= 9.0, c1 > 1.0, c4 <= 10.5, c2 > 2.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1558 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 <= 9.0, c1 > 1.0, c4 <= 10.5, c2 > 2.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1559 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 <= 9.0, c1 > 1.0, c4 > 10.5, c2 <= 10.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1565 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 > 9.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1570 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 3, c1 > 1.0, c2 > 1.5, c3 <= 12.0, c5 > 12.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1574 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 2, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1575 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 2, c1 <= 13, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1578 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 2, c1 <= 13, c2 > 3.0, c3 > 8.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1580 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 2, c1 <= 13, c2 > 3.0, c3 <= 8.5, c5 > 2.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1584 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 <= 3.0, c2 > 2.0, c1 > 3.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1591 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 > 3.0, c2 <= 12.5, c3 > 6.0, c1 <= 10.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1593 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 > 3.0, c2 <= 12.5, c3 > 6.0, c1 > 10.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1598 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 4, c5 > 3.0, c2 > 2.0, c3 > 3.0, c1 > 1.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1614 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 <= 2.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1624 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 1, c5 <= 8.5, c1 > 2.0, c2 <= 12.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1627 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 1, c5 <= 8.5, c1 > 2.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1630 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1635 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 > 4.0, c3 <= 10.0, c1 > 12.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1638 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 > 4.0, c3 > 10.0, c1 > 8.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1643 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 3, c4 > 2.0, c5 <= 12.0, c3 > 5.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1651 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 2, c5 > 1.0, c3 <= 11.5, c2 <= 11.0, c1 <= 6.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1655 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 2, c5 > 1.0, c3 <= 11.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1660 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 1, c1 > 2.5, c5 <= 3.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1663 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 1, c1 > 2.5, c5 > 3.0, c3 <= 11.0, c2 <= 13, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1670 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 4, c5 > 1.0, c3 > 2.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1675 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 3, c2 <= 12.5, c3 <= 12.0, c1 > 2.0, c4 > 2.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1676 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 3, c2 <= 12.5, c3 <= 12.0, c1 > 2.0, c4 <= 2.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1686 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 <= 6.0, c1 > 2.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1688 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 > 6.0, c1 <= 3.0, c4 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1689 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 > 6.0, c1 > 3.0, c4 <= 9.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1692 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 > 6.0, c1 > 3.0, c4 > 9.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1696 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 <= 2.5, c2 > 2.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1704 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 > 2.5, c5 > 4.0, c1 > 1.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1706 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 > 2.5, c5 > 4.0, c1 > 1.0, c2 <= 13, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1709 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 4, c5 <= 4.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1734 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 2, c1 > 10.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1738 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 > 2.0, c5 <= 13, c4 > 2.0, c1 > 2.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1749 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 4, c3 <= 11.0, c1 > 6.0, c2 > 5.0, c5 <= 3.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1761 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 <= 8.0, c3 > 2.0, c4 <= 6.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1763 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 <= 8.0, c3 > 2.0, c4 <= 6.5, c1 > 2.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1766 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 <= 8.0, c3 > 2.0, c4 > 6.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1767 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 <= 8.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1770 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 > 8.0, c4 > 2.0, c1 <= 12.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1771 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 > 8.0, c4 > 2.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1777 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 <= 4.0, c3 > 5.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1784 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 > 7.0, c4 <= 9.0, c2 <= 5.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1787 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 > 7.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1789 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 <= 7.0, c2 > 7.0, c4 <= 5.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1790 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 <= 7.0, c2 > 7.0, c4 > 5.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1797 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 > 7.0, c1 <= 1.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1799 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 > 7.0, c1 > 1.5, c4 > 1.5, c3 <= 6.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1801 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 > 7.0, c1 > 1.5, c4 > 1.5, c3 > 6.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1806 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 <= 7.0, c1 <= 11.5, c3 <= 8.5, c4 <= 10.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1814 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 > 2.0, c4 <= 7.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1816 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 > 2.0, c4 <= 7.0, c1 > 4.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1820 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 <= 2.0, c1 > 4.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1823 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 1, c1 > 2.0, c5 <= 11.0, c2 <= 11.0, c3 > 1.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1830 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 <= 12.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1846 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 3, c3 > 9.5, c1 > 6.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1850 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 2, c4 > 1.0, c1 > 1.0, c5 > 4.5, c2 <= 13, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1852 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 2, c4 > 1.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1853 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 2, c4 <= 1.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1856 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 > 11, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1869 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 4, c4 <= 10.0, c1 > 1.0, c2 > 1.0, c3 > 10.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1873 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 4, c4 > 10.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1878 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 > 2.0, c5 <= 11.5, c3 > 6.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1884 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 2, c2 <= 3.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1887 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 2, c2 > 3.0, c5 > 2.0, c1 <= 12.5, c3 > 3.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1890 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 > 2.0, c5 <= 11.0, c1 > 1.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1896 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 > 2.0, c5 > 11.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1910 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 3, c5 > 1.0, c4 <= 11.0, c1 <= 3.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1913 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 3, c5 > 1.0, c4 <= 11.0, c1 > 3.0, c2 > 6.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1919 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 <= 4.0, c3 > 5.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1935 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 1, c3 > 1.0, c5 > 4.5, c1 > 3.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1936 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 1, c3 > 1.0, c5 > 4.5, c1 > 3.0, c2 > 2.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1938 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 1, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1939 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 4, c3 > 8.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1942 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 4, c3 <= 8.5, c1 <= 7.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1951 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 <= 10.5, c2 > 2.5, c1 > 9.5, c4 > 3.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1952 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 <= 10.5, c2 > 2.5, c1 > 9.5, c4 > 3.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1954 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 > 10.5, c1 <= 6.0, c2 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1960 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 2, c3 > 2.5, c4 <= 8.5, c1 <= 12, c2 <= 5.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1963 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 2, c3 > 2.5, c4 <= 8.5, c1 <= 12, c2 > 5.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1968 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 > 1.5, c4 > 2.5, c1 > 7.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1970 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 > 1.5, c4 > 2.5, c1 > 7.0, c2 > 6.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1975 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 <= 9.0, c4 > 1.0, c1 <= 12.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1988 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 > 9.0, c2 <= 7.0, c5 > 8.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2002 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 <= 6.5, c4 > 1.0, c2 > 3.0, c1 <= 9.0, c5 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2011 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 <= 11.5, c1 > 7.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2017 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 <= 10.5, c2 <= 12.5, c1 > 2.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2032 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 4, c3 > 4.5, c2 > 1.0, c1 > 1.5, c4 <= 12.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2034 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 4, c3 > 4.5, c2 > 1.0, c1 > 1.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2045 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 > 4.0, c3 > 2.0, c1 > 3.0, c2 <= 7.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2046 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 > 4.0, c3 > 2.0, c1 > 3.0, c2 <= 7.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2049 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 <= 4.0, c1 <= 10.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2056 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 > 4.0, c1 <= 4.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2057 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 > 4.0, c1 > 4.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2063 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 <= 6.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2064 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 <= 6.0, c2 > 2.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2065 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 <= 6.0, c2 > 2.5, c3 > 2.5, c4 > 7.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2066 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 <= 6.0, c2 > 2.5, c3 > 2.5, c4 > 7.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2076 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 4, c5 > 7.0, c1 > 4.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2077 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 4, c5 > 7.0, c1 > 4.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2083 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 4, c5 <= 7.0, c3 > 1.5, c4 > 9.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2084 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 <= 3.5, c2 > 5.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2098 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 <= 7.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2102 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 <= 7.5, c2 > 2.5, c4 > 3.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2105 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 > 7.5, c5 > 2.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2109 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 1, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2111 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 1, c5 > 4.0, c3 <= 11.0, c4 <= 2.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2117 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 1, c5 > 4.0, c3 > 11.0, c4 > 3.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2118 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 4, c3 > 1.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2130 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 > 7.0, c1 > 8.5, c2 > 6.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2132 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 <= 7.0, c4 <= 11.0, c2 > 3.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2133 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 <= 7.0, c4 <= 11.0, c2 > 3.5, c1 > 4.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2134 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 <= 7.0, c4 <= 11.0, c2 > 3.5, c1 > 4.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2135 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 <= 7.0, c4 <= 11.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2139 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 <= 6.5, c2 > 3.5, c1 > 3.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2144 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 > 6.5, c2 <= 2.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2148 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 > 6.5, c2 > 2.5, c4 <= 13, c1 <= 12, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2154 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 <= 7.0, c5 > 7.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2156 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 <= 7.0, c5 <= 7.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2158 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 <= 7.0, c5 <= 7.0, c3 <= 6.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2160 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 <= 1.0, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2165 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 > 3.5, c2 <= 3.0, c4 > 6.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2170 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 > 3.5, c2 > 3.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2188 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 > 3.0, c5 > 10.5, c1 > 3.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2192 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 1, c5 <= 11.0, c3 <= 1.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2193 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 1, c5 <= 11.0, c3 > 1.5, c1 <= 11.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2194 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 1, c5 <= 11.0, c3 > 1.5, c1 <= 11.0, c2 > 1.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2196 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 1, c5 <= 11.0, c3 > 1.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2199 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 1, c5 > 11.0, c3 > 5.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2212 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 > 11.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2219 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 > 5.0, c3 > 4.5, c4 <= 9.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2220 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 > 5.0, c3 > 4.5, c4 <= 9.0, c2 > 3.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2223 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 2, c1 <= 12.0, c2 > 1.0, c3 > 2.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2225 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 2, c1 <= 12.0, c2 > 1.0, c3 > 2.0, c4 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2228 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 2, c1 <= 12.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2231 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 1, c4 > 1.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2236 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 1, c4 > 1.0, c2 <= 13, c1 > 1.5, c3 <= 13, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2243 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 4, c1 <= 12.0, c2 <= 2.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2248 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 <= 2.5, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2249 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 > 2.5, c5 <= 3.5, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2266 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 > 7.0, c3 > 2.5, c4 <= 11.5, c1 <= 5.5, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2268 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 > 7.0, c3 > 2.5, c4 <= 11.5, c1 > 5.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2269 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 > 7.0, c3 > 2.5, c4 <= 11.5, c1 > 5.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2272 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 <= 7.0, c4 <= 12.5, c2 > 1.5, c3 > 4.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2276 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 <= 6.5, c5 > 3.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2280 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 <= 9.0, c2 <= 12.5, c4 > 2.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2281 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 <= 9.0, c2 <= 12.5, c4 > 2.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2282 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 <= 9.0, c2 <= 12.5, c4 <= 2.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2289 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 > 9.0, c2 > 3.0, c5 > 10.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2295 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 <= 6.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2301 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 > 6.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2304 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 > 11.5, c2 > 2.0, c1 <= 10, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2311 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 <= 11.5, c2 > 1.0, c3 > 4.0, c4 <= 9.0, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2312 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 <= 11.5, c2 > 1.0, c3 > 4.0, c4 > 9.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2317 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 <= 12.5, c5 <= 2.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2325 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 > 12.5, c5 > 2.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2328 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 4, c4 <= 3.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2342 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 > 8.0, c1 <= 12.5, c3 <= 12.5, c2 <= 4.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2365 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 > 2.0, c2 > 1.5, c5 > 12.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2381 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 3, c4 > 3.5, c1 > 1.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2386 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 2, c2 <= 12.5, c3 > 2.0, c1 <= 11.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2387 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 2, c2 <= 12.5, c3 > 2.0, c1 <= 11.0, c4 > 3.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2406 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 > 8.0, c2 > 2.5, c3 > 3.5, c4 > 2.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2409 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 <= 12.0, c3 <= 5.0, c5 > 1.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2410 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 <= 12.0, c3 <= 5.0, c5 > 1.0, c1 > 4.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2411 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 <= 12.0, c3 <= 5.0, c5 > 1.0, c1 > 4.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2412 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 <= 12.0, c3 <= 5.0, c5 <= 1.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2415 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 <= 12.0, c3 > 5.0, c5 <= 11, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2417 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 <= 12.0, c3 > 5.0, c5 <= 11, c4 > 2.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2424 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 3, c3 > 3.0, c5 <= 12.0, c1 > 2.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2425 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 3, c3 > 3.0, c5 <= 12.0, c1 > 2.0, c2 > 3.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2430 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 > 5.5, c5 > 4.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2433 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 > 5.5, c5 <= 4.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2440 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 <= 5.5, c5 > 10.0, c2 <= 8.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2459 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 > 10.5, c1 > 8.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2460 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 4, c1 <= 10.5, c5 <= 3.5, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2464 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 4, c1 <= 10.5, c5 > 3.5, c2 > 4.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2466 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 4, c1 <= 10.5, c5 > 3.5, c2 > 4.0, c4 > 2.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2476 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 <= 11.5, c4 > 11.0, c5 > 7.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2478 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 <= 11.5, c4 > 11.0, c5 > 7.5, c3 <= 8.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2479 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 <= 6.5, c1 <= 6.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2488 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 > 6.5, c3 <= 12.0, c1 > 2.5, c2 > 1.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2497 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 1, c3 > 4.5, c1 > 9.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2502 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 > 2.0, c4 > 3.0, c1 <= 12.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2508 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 <= 2.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2513 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 3, c1 <= 10.5, c5 <= 5.0, c4 > 2.5, c2 > 6.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2514 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 3, c1 <= 10.5, c5 > 5.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2518 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 <= 4.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2522 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 > 4.0, c1 > 1.0, c2 <= 12.0, c3 <= 12.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2525 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 > 4.0, c1 > 1.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2528 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 1, c1 <= 9.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2540 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2543 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 <= 12.5, c1 <= 12.0, c2 > 2.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2558 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 2, c4 > 1.0, c1 > 1.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2562 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 1, c4 > 1.0, c3 <= 4.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2567 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 1, c4 > 1.0, c3 > 4.0, c1 > 3.0, c5 > 3.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2573 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 4, c1 > 1.0, c4 > 2.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2579 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 3, c5 > 1.5, c1 > 1.0, c2 <= 12, c3 > 7.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2581 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 3, c5 > 1.5, c1 > 1.0, c2 <= 12, c3 <= 7.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2582 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 3, c5 > 1.5, c1 > 1.0, c2 <= 12, c3 <= 7.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2588 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 > 1.5, c5 <= 9.0, c4 > 2.0, c1 > 10.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2589 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 > 1.5, c5 <= 9.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2591 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 > 1.5, c5 > 9.0, c1 <= 3.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2592 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 > 1.5, c5 > 9.0, c1 > 3.0, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2595 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 1, c1 > 1.5, c5 <= 3.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2602 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c3 <= 7.5, c1 <= 5.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2604 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c3 <= 7.5, c1 > 5.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2607 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c3 > 7.5, c4 <= 11.5, c5 > 7.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2616 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 3, c5 <= 12, c1 <= 4.0, c2 > 7.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2617 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 3, c5 <= 12, c1 > 4.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2618 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 3, c5 <= 12, c1 > 4.0, c4 > 4.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2622 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 2, c3 <= 10.5, c5 <= 12.5, c2 > 2.0, c4 > 11.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2625 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 2, c3 <= 10.5, c5 <= 12.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2629 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 2, c3 > 10.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2631 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 1, c3 <= 12.5, c4 <= 1.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2635 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 1, c3 <= 12.5, c4 > 1.5, c2 <= 12.5, c5 > 9.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2637 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 1, c3 <= 12.5, c4 > 1.5, c2 > 12.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2638 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 1, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2639 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 > 8.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2641 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 <= 8.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2648 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 <= 8.5, c3 > 5.0, c2 > 5.5, c4 > 3.5, c5 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2650 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 3, c1 <= 12.5, c3 > 11.5, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2651 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 3, c1 <= 12.5, c3 <= 11.5, c4 <= 6.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2654 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 3, c1 <= 12.5, c3 <= 11.5, c4 > 6.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2657 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 3, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2659 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 2, c5 > 2.0, c4 <= 12.0, c2 <= 3.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2660 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 2, c5 > 2.0, c4 <= 12.0, c2 > 3.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2662 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 2, c5 > 2.0, c4 <= 12.0, c2 > 3.0, c1 > 3.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2686 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 > 1.5, c2 > 2.0, c1 <= 12.0, c4 <= 7.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2690 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 > 1.5, c2 > 2.0, c1 > 12.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2692 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 > 1.5, c2 <= 2.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2696 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 2, c5 <= 13, c2 > 2.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2699 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 2, c5 <= 13, c2 > 2.0, c1 <= 13, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2704 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 > 1.5, c4 <= 6.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2714 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 <= 9.0, c3 > 4.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2715 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 <= 9.0, c3 > 4.0, c4 <= 13, c5 <= 12.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2717 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 <= 9.0, c3 > 4.0, c4 <= 13, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2723 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 > 9.0, c5 > 4.0, c2 > 3.0, c3 > 6.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2724 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 > 11.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2728 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 <= 11.5, c1 <= 8.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2731 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 <= 11.5, c1 > 8.5, c3 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2733 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 <= 11.5, c1 > 8.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2736 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 <= 10.0, c5 <= 3.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2740 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 <= 10.0, c5 > 3.0, c1 <= 11.0, c2 <= 5.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2743 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 <= 10.0, c5 > 3.0, c1 > 11.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2749 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 > 10.0, c2 > 3.0, c1 <= 3.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2751 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 <= 6.0, c2 <= 4.5, c1 <= 12, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2761 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 > 6.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2770 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 > 1.0, c4 > 7.5, c1 <= 13, c2 > 6.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2777 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 > 2.0, c1 > 3.5, c2 > 2.0, c5 <= 13, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2785 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 <= 4.0, c1 > 3.5, c3 > 2.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2801 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 1, c5 <= 13, c2 <= 13, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2813 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 > 6.0, c5 > 8.0, c2 <= 8.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2816 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 3, c1 <= 6.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2818 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 3, c1 > 6.0, c4 <= 4.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2829 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 > 7.0, c4 > 3.0, c1 <= 5.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2833 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 <= 7.0, c1 > 2.0, c3 > 5.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2837 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 1, c1 <= 1.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2843 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 1, c1 > 1.5, c4 > 9.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2845 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 4, c1 <= 12.5, c2 > 1.0, c4 <= 12.0, c3 > 1.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2854 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 3, c4 <= 3.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2859 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 3, c4 > 3.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2860 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 2, c3 > 2.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2863 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 2, c3 > 2.0, c1 > 1.5, c2 > 2.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2867 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 2, c3 <= 2.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2869 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 1, c4 <= 13, c2 <= 11.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2871 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 1, c4 <= 13, c2 <= 11.0, c5 <= 13, c1 <= 9.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2874 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 1, c4 <= 13, c2 > 11.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2876 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 <= 10.0, c2 <= 4.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2880 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 <= 10.0, c2 > 4.0, c5 > 3.5, c4 <= 12, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2885 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 > 10.0, c2 <= 8.0, c1 > 4.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2893 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 > 9.0, c1 > 1.5, c3 <= 4.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2908 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 > 4.0, c2 <= 12, c1 <= 9.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2911 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 > 4.0, c2 <= 12, c1 > 9.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2912 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 <= 9.0, c2 <= 12.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2916 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 <= 9.0, c2 <= 12.5, c1 > 6.5, c4 > 6.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2923 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 <= 9.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2937 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 <= 2.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2940 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 <= 2.0, c2 > 5.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2946 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 > 2.0, c4 > 3.5, c2 > 4.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2949 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 2, c1 > 2.0, c5 > 1.5, c2 > 8.5, c3 <= 12, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2950 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 2, c1 > 2.0, c5 > 1.5, c2 > 8.5, c3 <= 12, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2953 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 2, c1 > 2.0, c5 > 1.5, c2 <= 8.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2954 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 2, c1 <= 2.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2965 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 4, c3 <= 8.0, c1 > 3.0, c2 <= 11.0, c4 > 4.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2967 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 4, c3 <= 8.0, c1 > 3.0, c2 > 11.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2969 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 4, c3 > 8.0, c5 > 5.0, c1 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2974 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 > 3.5, c1 > 8.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2985 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 2, c5 > 1.0, c2 > 1.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2987 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 2, c5 > 1.0, c2 > 1.5, c1 <= 13, c3 <= 4.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2992 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 1, c5 > 1.0, c1 <= 12.5, c2 > 1.0, c3 <= 12.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2994 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 1, c5 > 1.0, c1 <= 12.5, c2 > 1.0, c3 > 12.0, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2996 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 1, c5 > 1.0, c1 > 12.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3001 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 <= 7.5, c1 > 1.0, c5 > 1.5, c3 <= 4.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3011 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 > 7.5, c2 > 6.5, c3 > 3.0, c1 > 4.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3016 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 3, c3 > 1.5, c4 > 1.0, c2 <= 12.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3023 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 <= 3.5, c3 <= 10.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3029 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 > 3.5, c4 <= 9.5, c1 > 1.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3034 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 > 3.5, c4 > 9.5, c1 > 1.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3038 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 > 11.5, c3 > 2.5, c1 > 7.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3039 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 > 11.5, c3 > 2.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3043 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 <= 11.0, c1 > 1.5, c3 > 1.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3046 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 > 11.0, c1 > 7.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3052 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 4, c2 > 1.0, c3 <= 13, c1 > 1.0, c4 > 2.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3055 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 4, c2 > 1.0, c3 <= 13, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3058 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 3, c1 > 1.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3059 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 3, c1 > 1.5, c2 <= 13, c4 <= 12.0, c3 > 1.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3061 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 3, c1 > 1.5, c2 <= 13, c4 <= 12.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3067 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 <= 11.0, c2 > 11.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3068 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 <= 11.0, c2 > 11.0, c4 > 3.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3069 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 <= 11.0, c2 > 11.0, c4 > 3.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3072 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 > 11.0, c2 > 5.0, c4 <= 9.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3074 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 > 11.0, c2 > 5.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3079 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 <= 11.0, c1 <= 13, c2 > 1.0, c4 <= 1.0, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3081 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 <= 11.0, c1 <= 13, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3084 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 > 11.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3092 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 <= 8.5, c3 > 8.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3096 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 > 8.5, c3 <= 9.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3097 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 > 8.5, c3 > 9.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3100 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 <= 4.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3102 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 <= 4.0, c5 <= 5.0, c1 <= 8.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3111 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 2, c1 <= 12.0, c5 > 2.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3116 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 2, c1 <= 12.0, c5 <= 2.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3118 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 2, c1 > 12.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3124 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 <= 6.5, c1 > 4.5, c5 > 1.0, c2 > 5.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3133 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 4, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3136 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 4, c4 > 3.0, c1 <= 13, c3 > 1.0, c2 > 5.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3138 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 4, c4 > 3.0, c1 <= 13, c3 > 1.0, c2 <= 5.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3147 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 <= 6.5, c4 <= 7.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3154 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 <= 11.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3159 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 <= 11.0, c1 > 1.5, c2 > 10.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3168 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 1, c1 <= 6.0, c5 <= 7.5, c3 <= 11.0, c2 <= 9.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3169 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 1, c1 <= 6.0, c5 <= 7.5, c3 <= 11.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3175 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 <= 6.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3180 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 > 6.5, c5 <= 9.0, c4 > 1.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3184 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 > 6.5, c5 > 9.0, c1 <= 10.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3185 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 > 6.5, c5 > 9.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3188 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 <= 2.0, c2 > 5.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3192 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 <= 2.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3194 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 <= 2.5, c2 > 5.0, c1 > 2.0, c3 > 5.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3196 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 <= 2.5, c2 > 5.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3206 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 > 3.0, c3 > 4.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3214 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 > 10.5, c1 > 7.0, c3 <= 6.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3217 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 > 10.5, c1 <= 7.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3221 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 > 8.5, c1 <= 3.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3224 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 > 8.5, c1 > 3.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3225 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 > 8.5, c1 > 3.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3226 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 <= 8.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3235 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 <= 8.0, c2 > 3.0, c5 <= 9.5, c1 > 5.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3241 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 > 8.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3260 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 > 1.5, c1 <= 12.5, c3 > 2.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3264 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 > 1.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3265 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 <= 4.0, c4 <= 12.0, c1 <= 7.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3268 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 <= 4.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3269 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 > 4.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3273 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 > 4.0, c1 > 2.5, c3 <= 9.5, c4 > 5.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3279 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 <= 2.5, c2 <= 7.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3281 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 > 2.5, c1 <= 2.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3282 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 > 2.5, c1 > 2.0, c2 > 13, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3285 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 > 2.5, c1 > 2.0, c2 <= 13, c3 > 4.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3286 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 > 2.5, c1 > 2.0, c2 <= 13, c3 > 4.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3294 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 > 4.0, c1 > 2.0, c2 <= 1.0, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3296 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 > 4.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3299 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 > 1.0, c1 > 2.0, c2 > 1.0, c3 > 1.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3306 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 <= 1.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3308 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 <= 8.0, c5 <= 12.0, c1 <= 11.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3309 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 <= 8.0, c5 <= 12.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3318 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 4, c1 <= 4.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3321 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 4, c1 <= 4.0, c2 > 3.5, c3 <= 7.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3324 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 4, c1 > 4.0, c4 > 4.0, c3 > 3.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3327 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 3, c2 <= 9.0, c1 > 5.5, c5 <= 4.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3332 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 3, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3335 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 2, c2 <= 8.5, c5 > 1.0, c4 > 6.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3342 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 1, c3 > 2.0, c5 > 2.0, c2 > 6.5, c4 <= 11.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3344 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 1, c3 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3347 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 1, c3 <= 2.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3348 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 > 2.0, c5 <= 11.0, c2 <= 7.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3353 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 > 2.0, c5 > 11.0, c1 > 2.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3354 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 > 2.0, c5 > 11.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3359 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 > 11.0, c1 > 1.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3363 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 <= 5.0, c1 > 4.0, c2 <= 11.0, c3 <= 12.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3365 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 <= 5.0, c1 > 4.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3370 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 > 5.0, c4 > 2.5, c2 > 1.5, c1 <= 3.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3374 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 <= 3.0, c2 > 7.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3377 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 <= 3.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3384 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 > 3.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3386 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 1, c5 <= 10.5, c1 <= 13, c2 <= 12.5, c4 <= 3.5, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3390 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 1, c5 <= 10.5, c1 <= 13, c2 > 12.5, c3 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3395 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 <= 10.5, c1 <= 13, c3 <= 11.0, c4 <= 9.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3397 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 <= 10.5, c1 <= 13, c3 <= 11.0, c4 > 9.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3399 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 <= 10.5, c1 <= 13, c3 > 11.0, c2 <= 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3406 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 <= 11.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3409 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 <= 11.5, c1 > 2.5, c4 > 1.0, c5 <= 5.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3414 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 2, c1 > 1.0, c4 > 2.0, c5 <= 9.0, c2 <= 12.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3415 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 2, c1 > 1.0, c4 > 2.0, c5 <= 9.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3421 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 2, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3425 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 > 2.0, c3 <= 4.0, c1 <= 9.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3429 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 > 2.0, c3 > 4.0, c1 > 2.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3436 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 > 6.5, c4 <= 5.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3437 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 > 6.5, c4 <= 5.0, c2 > 4.0, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3440 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 > 6.5, c4 > 5.0, c2 > 8.5, c3 > 6.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3442 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 > 6.5, c4 > 5.0, c2 <= 8.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3444 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 <= 8.0, c5 > 1.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3448 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 <= 8.0, c5 > 1.0, c3 > 3.5, c2 > 4.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3462 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 2, c2 > 2.5, c1 > 2.5, c3 > 2.0, c4 > 5.0, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3464 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 2, c2 > 2.5, c1 > 2.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3468 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 > 2.0, c2 <= 12.5, c1 <= 2.5, c3 > 9.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3469 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 > 2.0, c2 <= 12.5, c1 > 2.5, c4 <= 9.0, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3470 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 > 2.0, c2 <= 12.5, c1 > 2.5, c4 <= 9.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3471 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 > 2.0, c2 <= 12.5, c1 > 2.5, c4 > 9.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3472 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 > 2.0, c2 <= 12.5, c1 > 2.5, c4 > 9.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3473 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 > 2.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3488 poker_hand = 5 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 3, c4 <= 10.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#3493 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 2, c5 > 2.5, c1 > 1.5, c4 > 2.0, c2 > 3.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3499 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 1, c2 > 2.0, c3 <= 12.0, c1 > 3.0, c4 > 5.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3511 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 <= 11.0, c4 > 2.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3514 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 > 11.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3517 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 3, c4 > 3.0, c5 <= 9.0, c2 > 3.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3523 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 2, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3527 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 2, c2 > 3.0, c3 > 2.5, c4 <= 10.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3529 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 2, c2 > 3.0, c3 > 2.5, c4 > 10.0, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3534 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 <= 8.0, c1 > 3.0, c4 > 2.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3535 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 <= 8.0, c1 > 3.0, c4 <= 2.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3540 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 <= 5.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3545 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 <= 5.0, c1 <= 8.0, c5 > 7.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3546 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 > 5.0, c1 > 2.0, c3 <= 8.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3550 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 > 5.0, c1 <= 2.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3566 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 2, c1 > 2.5, c5 <= 4.0, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3569 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 2, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3572 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 > 2.0, c3 <= 5.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3573 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 > 2.0, c3 <= 5.0, c1 > 2.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3586 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 <= 2.5, c3 > 3.0, c1 > 5.5, c4 > 6.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3587 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 <= 2.5, c3 > 3.0, c1 > 5.5, c4 > 6.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3588 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 > 2.5, c1 > 1.0, c4 > 12, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3590 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 > 2.5, c1 > 1.0, c4 <= 12, c3 <= 10.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3592 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 > 2.5, c1 > 1.0, c4 <= 12, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3594 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 3, c3 > 1.0, c1 > 2.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3595 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 3, c3 > 1.0, c1 > 2.0, c2 > 1.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3597 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 3, c3 > 1.0, c1 > 2.0, c2 > 1.5, c4 <= 13, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3598 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 3, c3 > 1.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3599 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 3, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3607 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 > 2.5, c4 <= 11.0, c3 > 10.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3609 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 > 2.5, c4 > 11.0, c3 <= 9, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3612 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 <= 9.0, c4 <= 10.0, c3 <= 4.0, c2 <= 8.5, c5 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3614 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 <= 9.0, c4 <= 10.0, c3 > 4.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3616 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 <= 9.0, c4 <= 10.0, c3 > 4.0, c2 > 3.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3621 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 > 9.0, c5 > 1.5, c4 <= 5.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3622 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 > 9.0, c5 > 1.5, c4 > 5.5, c2 <= 10.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3624 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 > 9.0, c5 > 1.5, c4 > 5.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3625 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3626 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 > 5.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3627 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 > 5.5, c3 <= 8.5, c4 <= 2.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3630 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 > 5.5, c3 <= 8.5, c4 > 2.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3636 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 <= 9.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3637 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 <= 9.5, c1 > 4.0, c5 <= 3.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3648 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 2, c1 > 1.0, c2 > 1.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3651 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 2, c1 > 1.0, c2 > 1.0, c3 > 1.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3654 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 2, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3655 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 > 2.0, c4 <= 3.0, c2 > 8.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3658 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 > 2.0, c4 > 3.0, c3 <= 12.5, c2 > 1.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3674 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 > 5.5, c1 > 3.5, c3 > 9.0, c2 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3676 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 > 5.5, c1 > 3.5, c3 <= 9.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3678 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 <= 7.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3680 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 3.0, c5 <= 5.0, c4 > 3.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3684 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 3.0, c5 > 5.0, c3 > 7.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3686 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 > 7.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3690 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 2, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3691 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 2, c2 > 1.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3699 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 <= 3.5, c2 > 5.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3700 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 <= 3.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3701 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 > 3.5, c2 <= 9.5, c3 > 5.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3702 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 > 3.5, c2 <= 9.5, c3 > 5.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3704 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 > 3.5, c2 <= 9.5, c3 <= 5.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3711 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 <= 8.0, c4 <= 3.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3717 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 > 8.0, c4 > 1.0, c3 > 5.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3724 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 > 1.0, c4 > 2.0, c1 <= 9.5, c5 > 12.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3725 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 > 1.0, c4 > 2.0, c1 <= 9.5, c5 > 12.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3728 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 > 1.0, c4 > 2.0, c1 > 9.5, c3 > 1.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3729 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 > 1.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3735 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 2, c5 <= 10.5, c4 > 2.5, c1 <= 9.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3743 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 <= 12.0, c3 <= 4.5, c1 > 9.0, c2 > 3.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3744 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 <= 12.0, c3 <= 4.5, c1 > 9.0, c2 > 3.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3745 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 <= 12.0, c3 > 4.5, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3746 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 <= 12.0, c3 > 4.5, c1 > 1.0, c2 > 1.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3752 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 > 12.0, c3 > 2.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3756 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 4, c1 > 2.0, c2 > 1.0, c3 <= 12.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3760 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 3, c5 > 2.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3762 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 3, c5 > 2.0, c3 > 1.5, c1 > 2.5, c2 <= 9.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3765 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 3, c5 > 2.0, c3 > 1.5, c1 > 2.5, c2 > 9.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3769 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 2, c1 <= 13, c4 > 2.0, c3 <= 9.0, c2 <= 11.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3774 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 2, c1 <= 13, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3789 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 > 2.0, c1 > 12.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3792 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 <= 2.0, c3 > 7.5, c1 > 5.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3794 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 <= 2.0, c3 > 7.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3797 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 3, c5 <= 12.5, c1 > 1.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3799 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 3, c5 <= 12.5, c1 > 1.5, c2 > 4.0, c3 <= 4.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3801 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 3, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3803 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 2, c5 <= 11.5, c1 > 1.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3806 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 2, c5 <= 11.5, c1 > 1.0, c2 > 3.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3809 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 1, c2 > 1.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3814 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 1, c2 > 1.0, c3 <= 11.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3822 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 <= 9.0, c1 > 4.5, c3 > 4.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3823 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 <= 9.0, c1 > 4.5, c3 > 4.0, c4 > 2.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3826 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 > 9.0, c3 <= 9.5, c4 > 7.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3827 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 > 9.0, c3 <= 9.5, c4 > 7.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3828 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 > 9.0, c3 <= 9.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3830 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 <= 7.5, c2 <= 4.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3832 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 4.5, c5 <= 5.5, c4 > 4.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3835 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 4.5, c5 > 5.5, c4 > 2.5, c3 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3837 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 > 7.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3838 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 > 7.5, c4 > 2.5, c2 > 1.5, c5 > 5.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3839 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 > 7.5, c4 > 2.5, c2 > 1.5, c5 > 5.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3844 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 2, c1 > 1.5, c3 > 4.0, c5 > 2.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3845 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 2, c1 > 1.5, c3 > 4.0, c5 > 2.0, c4 > 3.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3848 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 <= 9.5, c3 <= 6.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3849 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 <= 9.5, c3 <= 6.5, c1 <= 9.5, c4 <= 8.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3855 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 <= 9.5, c3 > 6.5, c1 > 4.0, c5 <= 8.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3858 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 > 9.5, c5 > 4.5, c1 > 3.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3859 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 > 9.5, c5 > 4.5, c1 > 3.5, c4 <= 8.5, c3 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3862 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 <= 11.0, c1 <= 4.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3863 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 <= 11.0, c1 > 4.0, c2 <= 4.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3871 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 > 11.0, c3 <= 8.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3880 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 > 3.0, c1 <= 3.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3883 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 > 3.0, c1 > 3.5, c2 > 3.5, c4 > 4.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3885 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3886 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 <= 4.5, c4 > 2.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3887 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 <= 4.5, c4 > 2.0, c3 > 4.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3889 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 <= 4.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3902 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 > 3.0, c4 <= 9.0, c1 > 8.0, c2 > 2.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3915 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 > 1.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3919 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 3, c1 <= 11.5, c3 > 1.5, c4 <= 12.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3923 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 <= 8.0, c3 <= 5.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3929 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 <= 8.0, c3 > 5.0, c2 <= 11.5, c5 <= 12.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3933 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 > 8.0, c5 <= 11.5, c2 <= 6.5, c3 <= 7.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3936 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 > 8.0, c5 <= 11.5, c2 > 6.5, c4 > 1.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3945 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 <= 10.0, c2 > 6.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3948 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 > 10.0, c5 > 5.5, c2 > 3.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3949 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 > 10.0, c5 > 5.5, c2 > 3.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3956 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 4, c5 <= 12.0, c2 <= 3.0, c1 > 3.0, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3961 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 4, c5 <= 12.0, c2 > 3.0, c1 > 1.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3967 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 3, c2 > 2.0, c5 > 5.5, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3969 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 3, c2 > 2.0, c5 <= 5.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3975 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 > 1.5, c1 > 2.0, c5 <= 11.0, c3 <= 2.5, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3977 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 > 1.5, c1 > 2.0, c5 <= 11.0, c3 > 2.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3983 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 <= 3.0, c4 <= 11.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3986 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 <= 3.0, c4 <= 11.5, c5 > 3.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3988 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 > 3.0, c2 > 2.0, c1 <= 12, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3995 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 4, c4 <= 13, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3996 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 4, c4 <= 13, c1 > 2.5, c2 > 2.0, c3 > 13, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4002 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 > 11.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4007 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 <= 9.0, c3 <= 12.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4013 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 > 9.0, c1 > 4.0, c3 > 8.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4016 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 > 2.0, c3 <= 11.0, c2 <= 6.5, c5 <= 9.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4017 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 > 2.0, c3 <= 11.0, c2 <= 6.5, c5 > 9.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4021 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 > 2.0, c3 <= 11.0, c2 > 6.5, c1 <= 11.5, c5 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4023 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 > 2.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4027 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 9.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4030 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 9.0, c1 > 3.5, c3 <= 12, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4033 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 > 9.0, c5 > 3.5, c1 <= 4.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4036 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 > 9.0, c5 > 3.5, c1 > 4.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4038 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 > 11.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4043 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 <= 10.0, c2 > 6.0, c3 <= 7.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4049 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 <= 5.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4053 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 > 5.0, c2 > 2.0, c4 > 2.0, c1 <= 10.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4072 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 1, c2 > 2.0, c1 <= 13, c3 > 2.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4079 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4080 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 > 1.0, c4 <= 9.0, c2 <= 12.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4090 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 <= 5.0, c2 > 1.0, c3 <= 12.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4092 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 <= 5.0, c2 > 1.0, c3 <= 12.5, c1 > 1.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4096 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 > 5.0, c4 > 1.0, c3 <= 9.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4099 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 > 5.0, c4 > 1.0, c3 > 9.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4109 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 > 3.5, c2 <= 10.5, c4 <= 11.5, c1 <= 3.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4110 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 > 3.5, c2 <= 10.5, c4 <= 11.5, c1 > 3.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4115 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 > 2.0, c5 <= 9.5, c1 > 10.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4119 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 > 2.0, c5 > 9.5, c1 > 5.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4120 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 > 2.0, c5 > 9.5, c1 > 5.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4127 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 <= 12.5, c5 <= 2.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4130 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 <= 12.5, c5 > 2.5, c2 > 1.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4139 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c1 > 3.5, c2 <= 3.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4142 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c1 > 3.5, c2 > 3.0, c3 <= 10.0, c4 > 6.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4143 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c1 > 3.5, c2 > 3.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4145 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 <= 12.5, c3 <= 10.0, c4 <= 5.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4146 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 <= 12.5, c3 <= 10.0, c4 > 5.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4150 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 <= 12.5, c3 > 10.0, c4 > 3.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4151 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 <= 12.5, c3 > 10.0, c4 > 3.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4158 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c2 > 3.5, c4 <= 9.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4160 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c2 > 3.5, c4 > 9.5, c3 > 1.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4174 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 > 1.5, c1 > 11.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4175 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 <= 7.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4185 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4187 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 2.0, c1 > 12, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4188 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 2.0, c1 <= 12, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4191 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 2.0, c1 <= 12, c2 > 1.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4193 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4196 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c4 > 2.5, c2 > 6.0, c5 > 2.0, c1 <= 7.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4197 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c4 > 2.5, c2 > 6.0, c5 > 2.0, c1 <= 7.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4200 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c4 > 2.5, c2 > 6.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4201 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 <= 8.0, c1 <= 3.5, c2 > 1.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4202 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 <= 8.0, c1 <= 3.5, c2 > 1.0, c4 <= 8.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4213 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 > 8.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4216 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 <= 12.5, c5 > 2.0, c2 > 3.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4218 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 <= 12.5, c5 > 2.0, c2 > 3.0, c3 > 3.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4220 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 <= 12.5, c5 <= 2.0, c2 <= 7.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4226 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 > 1.5, c4 <= 2.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4231 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 > 1.5, c4 > 2.0, c2 <= 8.5, c5 <= 10.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4237 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c1 <= 10.0, c4 > 1.5, c2 > 2.0, c3 > 4.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4242 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c1 > 10.0, c4 > 4.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4244 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 <= 11.0, c2 <= 12.5, c3 > 1.0, c4 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4245 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 <= 11.0, c2 <= 12.5, c3 > 1.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4246 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 <= 11.0, c2 <= 12.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4255 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 <= 3.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4260 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 > 3.0, c3 <= 12.0, c4 <= 11.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4263 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 > 3.0, c3 > 12.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4271 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 4.0, c4 <= 6.5, c1 <= 9.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4284 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 > 8.0, c4 <= 5.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4286 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 > 8.0, c4 > 5.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4289 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 > 5.5, c5 <= 8.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4292 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 > 5.5, c5 <= 8.0, c1 > 2.5, c3 > 3.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4295 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 > 5.5, c5 > 8.0, c1 <= 7.5, c3 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4300 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 <= 5.5, c1 > 2.5, c3 <= 9.0, c4 > 3.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4301 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 <= 5.5, c1 > 2.5, c3 <= 9.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4303 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 <= 5.5, c1 > 2.5, c3 > 9.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4317 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 > 10.0, c1 > 3.5, c3 <= 6.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4320 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 > 10.0, c1 > 3.5, c3 > 6.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4322 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 <= 11.0, c1 > 1.0, c2 > 2.0, c5 <= 11.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4344 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 > 6.0, c1 > 4.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4350 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 6.0, c2 > 1.5, c1 > 3.5, c3 <= 11.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4351 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 6.0, c2 > 1.5, c1 > 3.5, c3 <= 11.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4355 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c2 > 2.5, c1 <= 10.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4356 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c2 > 2.5, c1 <= 10.5, c3 > 5.0, c4 <= 10.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4358 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c2 > 2.5, c1 <= 10.5, c3 > 5.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4362 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 > 8.5, c3 > 6.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4364 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 > 8.5, c3 > 6.0, c4 > 6.0, c1 <= 5.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4367 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 <= 8.5, c1 <= 8.0, c3 <= 12, c2 > 7.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4381 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 <= 1.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4383 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 <= 5.5, c2 <= 6.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4392 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 > 5.5, c2 <= 12.0, c1 > 1.0, c4 > 1.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4399 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 <= 7.5, c4 <= 11.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4401 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 <= 7.5, c4 <= 11.5, c1 > 1.5, c5 > 5.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4404 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 > 7.5, c2 <= 6.5, c1 <= 3.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4408 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 > 7.5, c2 > 6.5, c1 <= 8.0, c4 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4410 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 > 7.5, c2 > 6.5, c1 > 8.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4417 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c5 > 1.0, c3 > 11.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4429 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 <= 1.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4434 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 1.5, c5 <= 13, c1 <= 11.0, c3 > 1.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4436 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 1.5, c5 <= 13, c1 <= 11.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4443 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 <= 9.5, c1 > 1.5, c2 <= 11.0, c5 <= 11.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4448 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 > 9.5, c2 > 4.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4450 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 > 9.5, c2 > 4.0, c5 <= 7.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4455 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 5.0, c1 > 6.0, c2 > 2.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4456 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 5.0, c1 > 6.0, c2 > 2.5, c5 <= 8.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4461 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 <= 9.5, c2 > 1.0, c4 <= 11.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4465 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 > 9.5, c2 > 7.0, c4 <= 12.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4478 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 > 11.0, c4 > 4.5, c5 > 2.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4479 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 > 11.0, c4 > 4.5, c5 > 2.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4483 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 <= 4.5, c2 > 1.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4485 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 4.5, c1 <= 4.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4487 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 4.5, c1 > 4.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4488 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 4.5, c1 > 4.0, c3 > 6.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4489 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 4.5, c1 > 4.0, c3 > 6.0, c2 > 6.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4491 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c4 <= 11.0, c3 > 1.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4494 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c4 <= 11.0, c3 > 1.0, c1 > 4.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4502 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c4 > 1.0, c3 > 1.0, c5 <= 3.0, c2 > 4.5, c1 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4506 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c4 > 1.0, c3 > 1.0, c5 > 3.0, c1 <= 13, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4511 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 > 1.0, c2 <= 9.0, c1 > 6.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4513 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 > 1.0, c2 <= 9.0, c1 > 6.0, c4 > 4.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4517 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 > 1.0, c2 > 9.0, c1 > 1.5, c4 <= 13, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4519 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 <= 8.5, c5 <= 4.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4522 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 <= 8.5, c5 > 4.5, c2 > 2.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4526 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 > 8.5, c2 <= 10.5, c3 <= 13, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4530 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4532 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c3 <= 12.0, c1 > 1.0, c2 > 1.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4548 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 <= 7.0, c3 > 7.0, c1 <= 6.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4552 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 <= 7.0, c3 <= 7.0, c1 <= 6.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4555 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 <= 6.0, c4 > 1.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4556 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 <= 6.0, c4 > 1.0, c1 > 6.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4558 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 <= 6.0, c4 > 1.0, c1 > 6.0, c2 > 1.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4568 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 > 6.0, c4 > 1.5, c1 > 5.0, c2 > 2.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4569 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c2 > 2.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4577 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c2 <= 2.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4581 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 <= 4.5, c3 <= 8.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4583 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 <= 4.5, c3 > 8.0, c5 > 1.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4585 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 > 4.5, c3 > 8.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4592 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 > 4.5, c3 <= 8.5, c2 > 7.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4596 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c2 > 2.5, c5 > 2.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4599 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c2 > 2.5, c5 > 2.5, c1 > 2.5, c4 > 1.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4601 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 4, c3 > 2.5, c1 <= 8.5, c4 <= 12.0, c2 > 1.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4607 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 4, c3 > 2.5, c1 > 8.5, c4 > 2.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4609 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 <= 9.5, c3 <= 3.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4616 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 > 9.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4622 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 2.0, c3 <= 12.5, c4 <= 7.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4624 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 2.0, c3 <= 12.5, c4 > 7.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4631 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 <= 10.0, c3 <= 1.5, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4636 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 <= 10.0, c3 > 1.5, c1 > 4.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4637 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 > 10.0, c3 > 7.0, c1 <= 9.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4643 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4656 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 3, c1 > 1.0, c2 > 4.0, c3 <= 9.0, c4 > 2.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4658 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 3, c1 > 1.0, c2 > 4.0, c3 <= 9.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4660 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 3, c1 > 1.0, c2 > 4.0, c3 > 9.0, c4 > 2.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4662 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 3, c1 > 1.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4663 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 3, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4671 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 2, c3 > 3.0, c1 > 2.0, c2 <= 13, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4672 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 2, c3 > 3.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4675 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 1, c2 <= 10.0, c5 <= 12.5, c1 <= 13, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4677 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 1, c2 <= 10.0, c5 <= 12.5, c1 <= 13, c3 > 3.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4679 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 1, c2 > 10.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4681 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c5 > 2.0, c3 <= 12.5, c4 > 1.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4687 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 3, c3 <= 8.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4700 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 <= 10.0, c5 <= 9.0, c1 > 2.5, c2 > 5.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4701 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 <= 10.0, c5 > 9.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4707 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 > 10.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4708 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 <= 11.0, c1 > 2.0, c2 <= 11.0, c3 > 2.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4712 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 <= 11.0, c1 > 2.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4717 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 > 11.0, c1 > 5.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4725 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 <= 11.0, c1 <= 1.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4733 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 <= 2.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4738 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 <= 4.5, c4 <= 6.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4743 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 > 4.5, c3 > 7.0, c4 > 5.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4744 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 > 4.5, c3 <= 7.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4745 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 > 4.5, c3 <= 7.0, c4 <= 11.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4754 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 > 1.5, c3 <= 13, c2 > 3.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4759 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 1, c1 > 3.5, c4 > 1.5, c5 > 1.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4775 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 3, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4780 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 3, c5 <= 12, c4 > 10.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4783 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 <= 11.0, c5 <= 7.5, c4 <= 12.0, c2 <= 2.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4787 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 <= 11.0, c5 > 7.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4790 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 <= 11.0, c5 > 7.5, c3 <= 11.5, c4 > 5.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4791 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 > 11.0, c4 <= 4.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4795 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 > 2.0, c4 <= 2.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4805 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 4, c5 <= 10.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4811 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 4, c5 > 10.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4812 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 4, c5 > 10.5, c4 <= 7.5, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4815 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 3, c4 > 1.0, c2 > 1.0, c1 > 4.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4822 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 2, c1 > 3.5, c2 > 2.0, c4 <= 1.5, c3 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4841 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 <= 11.0, c5 <= 12.5, c2 <= 11.5, c3 <= 3.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4844 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 <= 11.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4850 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 <= 10.0, c1 > 2.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4853 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 <= 10.0, c1 > 2.0, c2 > 3.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4854 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 <= 10.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4857 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 > 10.0, c5 <= 12.5, c1 > 2.0, c2 > 4.5, c3 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4867 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c5 > 1.5, c3 > 3.0, c1 <= 10.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4876 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 > 2.0, c5 <= 13, c4 <= 11.5, c2 > 2.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4877 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 > 2.0, c5 <= 13, c4 <= 11.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4883 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 <= 10.0, c2 <= 1.5, c3 > 4.5, c4 > 5.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4885 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 <= 10.0, c2 > 1.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4888 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 <= 10.0, c2 > 1.5, c3 > 3.0, c5 > 10.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4889 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 <= 10.0, c2 > 1.5, c3 > 3.0, c5 > 10.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4891 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 > 10.0, c5 > 4.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4893 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 > 10.0, c5 > 4.5, c2 <= 7.5, c3 <= 11.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4900 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 3, c1 <= 13, c4 <= 12, c2 > 1.0, c3 > 1.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4901 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 3, c1 <= 13, c4 <= 12, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4903 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 <= 3.0, c2 <= 12.5, c3 > 5.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4904 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 <= 3.0, c2 <= 12.5, c3 > 5.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4907 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 > 3.0, c1 <= 9.5, c2 > 3.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4908 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 > 3.0, c1 <= 9.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4909 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 > 3.0, c1 > 9.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4910 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 > 3.0, c1 > 9.5, c2 > 3.0, c3 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4932 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 > 12.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4934 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 <= 8.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4947 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 > 8.0, c4 > 2.5, c3 > 3.0, c1 > 4.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4949 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 > 11.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4954 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 <= 11.5, c1 <= 12, c4 > 11.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4956 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 <= 11.5, c1 <= 12, c4 <= 11.5, c2 > 2.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4958 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 <= 11.5, c1 <= 12, c4 <= 11.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4963 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 <= 4.0, c5 > 7.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4973 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 > 4.0, c5 > 2.5, c1 > 7.5, c2 > 1.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4974 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 4, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4975 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 4, c1 > 4.0, c4 <= 12.5, c2 <= 11.0, c3 > 2.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4977 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 4, c1 > 4.0, c4 <= 12.5, c2 <= 11.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4978 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 4, c1 > 4.0, c4 <= 12.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4990 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 <= 7.0, c2 > 2.0, c1 > 5.0, c3 <= 9, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4999 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 > 1.5, c1 <= 8.0, c4 <= 13, c5 <= 12, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5013 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 > 4.5, c1 <= 6.5, c3 > 8.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5018 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 <= 1.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5022 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 <= 3.5, c1 > 5.0, c3 <= 5.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5023 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 <= 3.5, c1 > 5.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5024 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 > 3.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5027 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 > 3.5, c3 > 3.0, c1 <= 13, c5 > 3.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5029 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 3, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5031 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 3, c1 > 1.5, c4 > 2.0, c3 <= 1.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5042 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 > 3.5, c1 > 8.0, c3 > 6.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5045 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 <= 3.5, c2 > 6.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5046 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 <= 3.5, c2 > 6.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5050 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 1, c5 > 1.0, c2 <= 9.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5052 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 1, c5 > 1.0, c2 > 9.0, c3 > 1.5, c1 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5062 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 4, c1 > 2.0, c2 > 1.5, c3 <= 13, c4 > 2.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5064 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 3, c1 <= 6.5, c2 <= 3.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5068 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 3, c1 > 6.5, c4 > 1.0, c2 > 1.5, c5 <= 8.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5071 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 3, c1 > 6.5, c4 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5073 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 2, c1 > 2.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5074 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 2, c1 > 2.0, c2 > 2.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5075 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 2, c1 > 2.0, c2 > 2.5, c3 <= 13, c4 > 1.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5085 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 1, c1 <= 5.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5091 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 <= 5.0, c2 > 1.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5092 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 > 5.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5095 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 > 5.0, c2 <= 11.5, c5 <= 4.5, c3 <= 7.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5097 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 > 5.0, c2 <= 11.5, c5 > 4.5, c3 <= 5.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5101 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 <= 10.0, c1 > 3.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5110 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 > 10.0, c1 <= 9.5, c2 > 4.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5125 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 <= 9.5, c5 > 3.0, c4 <= 13, c1 <= 6.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5133 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 > 9.5, c5 > 6.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5134 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 4, c4 > 1.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5135 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 4, c4 > 1.0, c1 > 2.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5136 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 4, c4 > 1.0, c1 > 2.5, c3 > 2.5, c5 <= 6.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5138 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 4, c4 > 1.0, c1 > 2.5, c3 > 2.5, c5 > 6.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5145 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 > 3.0, c2 > 4.5, c3 <= 12.5, c5 > 2.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5151 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 1.0, c3 <= 11.0, c4 > 1.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5155 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 1.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5156 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5159 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 1, c4 <= 9.5, c1 <= 10.0, c5 <= 5.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5186 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 <= 12.5, c2 > 2.5, c3 <= 11.5, c5 <= 4.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5197 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 2, c2 > 3.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5199 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 1, c2 > 1.0, c5 <= 3.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5204 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 1, c2 > 1.0, c5 > 3.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5206 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 1, c2 <= 1.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5208 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 > 7.0, c3 > 2.0, c1 <= 7.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5211 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 > 7.0, c3 > 2.0, c1 > 7.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5219 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 <= 7.0, c3 <= 11.5, c1 > 6.5, c4 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5220 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 > 11.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5233 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 2, c3 <= 11.0, c1 > 4.0, c4 > 6.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5234 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 2, c3 <= 11.0, c1 > 4.0, c4 > 6.0, c5 > 6.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5235 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 2, c3 <= 11.0, c1 > 4.0, c4 > 6.0, c5 > 6.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5242 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 <= 10.5, c1 > 6.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5245 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 <= 10.5, c1 > 6.5, c3 > 2.5, c2 > 7.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5246 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 <= 10.5, c1 > 6.5, c3 > 2.5, c2 > 7.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5250 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c3 > 1.0, c2 <= 6.5, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5264 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 7.5, c1 <= 5.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5277 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 > 1.5, c3 > 3.0, c2 > 6.5, c1 > 3.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5278 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 <= 3.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5280 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 <= 6.0, c2 <= 6.0, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5284 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 <= 6.0, c2 > 6.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5297 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5303 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c5 > 2.5, c1 > 1.0, c2 > 10.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5313 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 > 1.0, c2 > 2.0, c5 <= 12.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5326 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 <= 12.0, c5 <= 13, c2 > 2.0, c3 > 9.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5331 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 > 12.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5334 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c2 > 1.0, c4 > 1.0, c5 > 1.0, c1 > 11.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5342 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5343 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 1.5, c2 > 2.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5347 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 1.5, c2 > 2.0, c3 > 1.5, c4 <= 2.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5348 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 1.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5352 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 <= 5.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5359 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 > 5.0, c2 > 10.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5360 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 > 5.0, c2 > 10.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5363 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 <= 4.5, c2 <= 3.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5373 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 <= 4.5, c2 <= 8.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5374 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 <= 4.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5377 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 > 4.5, c2 > 2.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5379 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 > 4.5, c2 > 2.5, c3 > 1.5, c4 <= 8.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5381 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 > 4.5, c2 > 2.5, c3 > 1.5, c4 > 8.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5385 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 <= 11.5, c2 > 2.0, c4 <= 3.0, c1 > 6.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5391 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 <= 11.5, c2 <= 2.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5405 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 <= 12.0, c3 > 2.5, c1 <= 13, c4 <= 11.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5406 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 <= 12.0, c3 > 2.5, c1 <= 13, c4 > 11.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5409 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 > 12.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5415 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c3 > 1.5, c4 <= 13, c1 > 2.0, c2 > 3.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5417 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c3 > 1.5, c4 <= 13, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5433 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5435 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 <= 9.5, c1 <= 13, c5 <= 8.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5438 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 <= 9.5, c1 <= 13, c5 > 8.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5439 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 > 9.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5445 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 > 8.5, c4 > 3.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5447 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 > 8.5, c4 > 3.0, c3 > 3.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5453 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 <= 8.5, c5 > 10.0, c3 > 1.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5460 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 <= 11.0, c1 > 1.0, c4 <= 13, c2 > 3.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5462 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 <= 11.0, c1 <= 1.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5469 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 > 11.0, c5 > 9.5, c1 <= 6.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5490 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c4 <= 12.0, c5 <= 11.0, c3 > 1.0, c1 <= 12, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5497 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c4 > 12.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5502 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 <= 13, c3 <= 10.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5505 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 <= 13, c3 > 10.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5506 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 <= 13, c3 > 10.0, c4 > 5.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5507 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 <= 13, c3 > 10.0, c4 > 5.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5508 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5513 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 <= 8.0, c5 <= 12.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5514 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 <= 8.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5515 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 > 8.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5518 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 > 8.0, c2 > 1.5, c4 > 1.0, c1 <= 5.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5523 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 12.0, c5 <= 13, c3 > 2.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5525 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 12.0, c5 <= 13, c3 <= 2.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5527 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c1 > 1.0, c4 > 12.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5532 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 > 1.0, c4 <= 10.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5533 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 > 1.0, c4 > 10.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5534 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 > 1.0, c4 > 10.5, c3 <= 7.0, c1 <= 11.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5545 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 <= 13, c2 > 1.5, c4 <= 4.0, c5 > 2.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5548 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 <= 13, c2 > 1.5, c4 > 4.0, c5 <= 2.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5562 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 <= 7.0, c4 > 3.0, c1 <= 13, c2 <= 10.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5563 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 <= 7.0, c4 > 3.0, c1 <= 13, c2 <= 10.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5570 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 <= 8.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5579 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 <= 5.0, c1 > 5.5, c5 > 1.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5585 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 > 5.0, c1 <= 5.5, c4 > 1.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5589 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 <= 3.5, c3 > 7.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5595 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 > 3.5, c5 <= 6.0, c3 > 4.0, c4 <= 10.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5599 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 > 3.5, c5 > 6.0, c3 > 2.5, c4 > 2.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5600 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 > 3.5, c5 > 6.0, c3 > 2.5, c4 > 2.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5604 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 1, c2 <= 12.5, c1 > 2.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5607 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 1, c2 <= 12.5, c1 > 2.5, c3 > 3.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5608 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 1, c2 > 12.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5615 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 > 1.0, c1 > 4.0, c2 <= 5.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5617 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 > 1.0, c1 > 4.0, c2 > 5.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5626 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 3, c3 <= 11.0, c1 > 1.5, c2 > 2.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5629 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 3, c3 > 11.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5630 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 3, c3 > 11.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5633 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 > 5.5, c2 <= 8.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5635 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 > 5.5, c2 > 8.0, c3 <= 9.5, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5636 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 > 5.5, c2 > 8.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5644 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 <= 7.5, c2 > 5.0, c3 > 5.5, c4 > 5.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5648 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 > 7.5, c2 <= 9.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5650 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 > 7.5, c2 <= 9.0, c3 > 5.0, c4 > 6.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5652 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 > 7.5, c2 > 9.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5655 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 4, c3 > 2.5, c2 > 1.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5657 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 4, c3 > 2.5, c2 > 1.0, c5 > 1.5, c1 > 1.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5663 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 3, c1 > 2.0, c3 > 13, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5668 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 3, c1 > 2.0, c3 <= 13, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5670 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 3, c1 <= 2.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5675 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 2, c3 > 12.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5678 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 1, c2 <= 5.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5681 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 1, c2 > 5.0, c5 <= 7.0, c1 > 2.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5684 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 4, c3 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5686 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 4, c3 > 2.0, c5 > 1.5, c4 <= 6.5, c1 > 1.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5691 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 4, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5699 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 > 7.5, c4 <= 7.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5705 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 <= 12.5, c1 > 2.0, c4 <= 4.5, c2 <= 9.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5709 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 <= 12.5, c1 > 2.0, c4 > 4.5, c3 <= 11.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5716 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 1, c2 > 1.0, c5 <= 9.0, c1 <= 2.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5725 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c1 > 2.0, c2 <= 11.0, c4 > 2.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5730 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5736 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c2 <= 13, c4 > 1.0, c3 <= 9.5, c1 <= 1.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5737 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c2 <= 13, c4 > 1.0, c3 > 9.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5742 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 <= 7.5, c3 > 2.0, c2 <= 3.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5744 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 <= 7.5, c3 > 2.0, c2 > 3.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5749 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 > 7.5, c2 > 1.0, c3 <= 6.5, c5 > 8.5, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5754 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 > 7.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5755 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 1.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5759 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 1.0, c4 > 4.0, c1 > 7.0, c2 > 2.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5761 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 1.0, c4 > 4.0, c1 <= 7.0, c2 <= 6.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5766 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5771 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c2 > 1.5, c3 > 2.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5775 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.0, c2 <= 8.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5780 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.0, c2 > 8.5, c4 <= 12.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5787 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c4 <= 1.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5790 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c4 > 1.5, c2 <= 13, c3 > 1.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5792 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c4 > 1.5, c2 <= 13, c3 > 1.0, c1 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5798 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 <= 11.0, c4 <= 13, c5 > 1.0, c3 > 2.5, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5799 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 <= 11.0, c4 <= 13, c5 <= 1.0, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5812 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 > 9.5, c1 > 5.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5821 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c3 > 2.0, c1 > 3.0, c2 > 2.0, c4 > 2.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5823 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c3 > 2.0, c1 > 3.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5824 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c3 <= 2.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5829 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c4 <= 12.5, c5 <= 12.5, c1 > 1.0, c3 <= 2.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5830 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c4 <= 12.5, c5 <= 12.5, c1 <= 1.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5835 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c2 <= 3.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5841 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c2 > 3.0, c3 <= 2.0, c1 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5843 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 <= 5.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5847 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 5.0, c3 > 1.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5863 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 <= 1.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5864 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c1 > 2.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5874 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 <= 3.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5880 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 <= 9.5, c5 <= 8.5, c4 > 3.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5882 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 > 9.5, c4 > 5.5, c1 > 8.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5884 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 > 9.5, c4 > 5.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5886 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5887 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c1 > 3.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5890 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c1 > 3.0, c2 > 4.0, c4 > 1.5, c3 <= 10.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5894 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 <= 4.0, c3 <= 7.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5912 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 4.0, c4 <= 4.5, c5 > 2.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5913 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 4.0, c4 <= 4.5, c5 > 2.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5914 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 4.0, c4 > 4.5, c3 <= 4.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5920 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 <= 9.0, c3 <= 12, c1 <= 4.5, c5 > 4.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5922 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 <= 9.0, c3 <= 12, c1 > 4.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5926 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 > 9.0, c4 <= 5.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5928 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 > 9.0, c4 > 5.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5934 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 2.0, c2 <= 12.0, c3 > 4.5, c4 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5946 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 6.5, c5 > 4.0, c2 > 2.5, c3 <= 6.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5947 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 6.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5949 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 6.5, c4 > 2.5, c3 <= 5.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5950 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 6.5, c4 > 2.5, c3 > 5.5, c2 <= 10.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5954 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 > 6.0, c1 <= 8.0, c5 <= 9.0, c3 > 5.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5956 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 > 6.0, c1 <= 8.0, c5 <= 9.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5961 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 > 6.0, c1 > 8.0, c3 > 4.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5962 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 > 6.0, c1 > 8.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5973 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 > 8.0, c1 > 3.5, c3 > 2.0, c2 <= 13, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5979 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c1 <= 12, c2 <= 11.0, c3 > 2.5, c4 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5986 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c5 > 3.0, c3 > 1.0, c1 > 2.0, c4 <= 12, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5988 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c5 > 3.0, c3 > 1.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5994 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 > 8.5, c3 > 5.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6004 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c2 <= 1.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6025 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c3 > 1.5, c2 > 1.0, c4 > 2.0, c1 > 2.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6029 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c3 > 1.5, c2 > 1.0, c4 <= 2.0, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6031 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c3 > 1.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6033 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c1 > 1.0, c4 > 1.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6042 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c4 > 2.0, c1 > 2.5, c2 > 2.5, c3 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6045 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c4 <= 2.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6055 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 > 2.0, c4 <= 8.0, c1 > 5.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6056 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 > 2.0, c4 <= 8.0, c1 > 5.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6058 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 > 2.0, c4 <= 8.0, c1 <= 5.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6065 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6072 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 > 10.0, c2 <= 10.5, c4 > 5.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6074 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 > 10.0, c2 > 10.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6086 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 4, c5 <= 3.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6088 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 4, c5 > 3.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6092 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 4, c5 > 3.0, c1 > 2.5, c2 > 3.5, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6097 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 3.0, c5 > 2.0, c2 > 3.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6099 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 3.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6108 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 > 6.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6111 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 > 6.5, c1 > 4.5, c3 <= 12.5, c2 > 7.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6112 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 > 6.5, c1 > 4.5, c3 <= 12.5, c2 > 7.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6128 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 4, c3 > 3.0, c4 <= 9.5, c2 <= 11.5, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6137 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 3, c1 > 1.5, c2 <= 11, c3 <= 10.0, c4 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6138 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 3, c1 > 1.5, c2 <= 11, c3 <= 10.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6142 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 2, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6149 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 2, c4 > 3.5, c1 > 6.0, c5 > 1.5, c2 > 9.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6150 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 2, c4 > 3.5, c1 > 6.0, c5 > 1.5, c2 > 9.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6151 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 <= 5.0, c4 <= 6.0, c1 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6156 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 > 5.0, c1 <= 12.5, c2 <= 4.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6159 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 > 5.0, c1 <= 12.5, c2 > 4.0, c3 <= 4.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6160 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 > 5.0, c1 <= 12.5, c2 > 4.0, c3 > 4.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6169 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 > 7.0, c4 > 2.0, c2 > 8.0, c1 > 3.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6189 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 2, c1 > 2.0, c4 <= 3.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6194 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 2, c1 > 2.0, c4 > 3.5, c5 > 10.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6201 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 1, c3 <= 12.0, c1 <= 13, c2 > 3.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6205 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 1, c3 > 12.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6206 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 4, c1 <= 12.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6213 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 <= 2.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6219 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 > 2.5, c1 > 9.0, c5 > 3.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6223 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 > 2.5, c1 <= 9.0, c3 > 3.0, c4 > 1.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6224 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 <= 4.0, c1 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6228 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 > 4.0, c1 <= 4.0, c2 <= 10.5, c3 <= 7.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6229 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 > 4.0, c1 <= 4.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6230 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 > 4.0, c1 > 4.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6234 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 > 4.0, c1 > 4.0, c2 > 2.5, c3 > 6.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6251 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 <= 9.0, c4 > 3.0, c3 > 10.5, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6257 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 > 9.0, c2 <= 12.0, c4 > 5.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6260 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 <= 7.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6266 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 > 7.5, c2 > 3.5, c3 <= 10.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6273 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 2, c1 <= 13, c3 > 2.0, c4 <= 12.5, c5 <= 12.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6274 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 2, c1 <= 13, c3 > 2.0, c4 <= 12.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6279 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 <= 9.0, c1 > 1.0, c2 <= 6.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6281 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 <= 9.0, c1 > 1.0, c2 > 6.5, c5 <= 5.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6284 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 <= 9.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6285 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 > 9.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6298 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 > 3.5, c2 <= 13, c1 <= 4.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6306 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 3, c2 > 2.0, c3 > 2.0, c1 <= 2.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6333 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 > 4.0, c1 <= 13, c3 <= 12.0, c2 <= 6.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6335 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 > 4.0, c1 <= 13, c3 <= 12.0, c2 > 6.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6337 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 > 4.0, c1 <= 13, c3 > 12.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6348 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 <= 7.0, c3 > 9.5, c1 > 2.0, c4 > 4.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6355 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 <= 10.0, c4 <= 12.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6358 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 > 10.0, c2 > 3.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6359 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 > 10.0, c2 > 3.5, c1 > 6.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6360 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 > 10.0, c2 > 3.5, c1 > 6.5, c4 <= 8.5, c5 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6372 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 > 8.0, c2 > 2.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6384 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 > 4.5, c1 <= 12.5, c5 <= 12.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6389 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6393 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 1.0, c3 <= 11.5, c5 <= 13, c2 <= 11.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6401 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c1 > 1.5, c3 > 2.5, c4 <= 13, c2 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6403 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c1 > 1.5, c3 > 2.5, c4 <= 13, c2 <= 1.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6405 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 <= 10.0, c2 > 2.0, c5 <= 12.0, c1 <= 3.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6406 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 <= 10.0, c2 > 2.0, c5 <= 12.0, c1 > 3.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6417 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 > 10.0, c1 > 2.5, c5 > 7.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6427 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 <= 12.5, c4 > 6.5, c3 > 5.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6428 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 <= 12.5, c4 > 6.5, c3 > 5.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6430 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 <= 9.0, c4 > 1.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6434 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 <= 9.0, c4 > 1.0, c5 > 3.0, c1 > 6.5, c2 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6441 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 > 9.0, c1 > 4.5, c2 <= 7.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6445 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 <= 13, c3 <= 8.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6453 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 <= 13, c3 > 8.0, c2 > 9.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6454 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 <= 7.5, c2 <= 3.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6456 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 <= 7.5, c2 > 3.0, c3 <= 12.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6457 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 <= 7.5, c2 > 3.0, c3 <= 12.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6458 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 <= 7.5, c2 > 3.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6461 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 > 7.5, c2 > 5.5, c4 > 4.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6462 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 > 7.5, c2 > 5.5, c4 > 4.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6463 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 > 7.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6467 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 <= 10.0, c1 <= 12.5, c3 > 1.0, c5 <= 12.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6472 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 <= 10.0, c1 <= 12.5, c3 <= 1.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6477 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 > 10.0, c5 > 7.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6487 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 9.0, c3 <= 11.5, c2 > 6.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6499 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 <= 3.5, c1 > 2.0, c2 > 8.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6500 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 <= 3.5, c1 > 2.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6501 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 <= 3.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6505 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 > 3.5, c2 > 1.5, c3 > 1.0, c1 <= 2.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6509 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c3 <= 12.5, c4 > 1.0, c1 <= 11.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6514 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6521 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c4 <= 12.5, c1 > 1.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6527 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c2 > 1.0, c1 > 2.0, c3 > 1.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6534 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 > 5.0, c1 > 4.0, c2 <= 10.0, c3 > 3.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6541 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 <= 5.0, c3 <= 6.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6547 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 > 5.0, c2 <= 10.5, c3 > 6.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6556 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 <= 6.0, c4 > 3.5, c5 > 3.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6558 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 > 6.0, c3 <= 11.0, c4 > 2.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6561 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 > 6.0, c3 > 11.0, c4 <= 9.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6568 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 2, c4 > 2.0, c3 > 2.0, c5 > 2.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6570 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 2, c4 > 2.0, c3 <= 2.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6571 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 2, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6589 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 > 2.5, c4 > 1.5, c3 <= 11.0, c5 <= 1.0, c2 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6597 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 3, c5 > 1.0, c1 > 2.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6598 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 3, c5 > 1.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6600 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 <= 5.5, c3 > 5.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6603 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 <= 5.5, c3 > 5.5, c5 > 3.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6606 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 > 5.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6620 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 <= 11.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6625 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 <= 12.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6626 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 <= 12.0, c4 > 1.5, c3 > 7.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6631 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 <= 12.0, c4 > 1.5, c3 <= 7.0, c1 > 3.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6632 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 <= 12.0, c4 > 1.5, c3 <= 7.0, c1 > 3.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6642 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 2, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6644 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 2, c1 > 4.0, c3 <= 8.0, c2 <= 6.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6654 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 > 1.0, c3 <= 7.5, c5 > 4.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6656 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 > 1.0, c3 > 7.5, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6659 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 <= 9.0, c3 <= 9.5, c2 > 1.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6669 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 > 9.0, c2 > 2.0, c3 > 3.0, c4 > 5.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6673 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 > 9.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6679 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 3, c3 > 1.5, c1 > 1.0, c2 > 2.5, c4 > 2.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6687 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 <= 9.5, c3 <= 13, c2 <= 9.0, c4 > 10.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6691 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 <= 9.5, c3 <= 13, c2 > 9.0, c4 > 5.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6697 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 1, c3 > 2.5, c1 <= 13, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6700 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 1, c3 > 2.5, c1 <= 13, c5 <= 12, c4 > 11.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6713 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 > 3.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6716 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c3 > 4.0, c1 <= 11.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6717 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c3 > 4.0, c1 <= 11.0, c2 > 2.5, c4 <= 10.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6719 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c3 > 4.0, c1 <= 11.0, c2 > 2.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6721 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c3 > 4.0, c1 > 11.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6722 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6723 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c4 > 1.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6725 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c4 > 1.5, c1 > 2.5, c3 <= 10.0, c2 <= 1.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6730 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c4 > 1.5, c1 > 2.5, c3 > 10.0, c5 > 6.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6734 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 <= 3.0, c1 <= 11.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6737 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 <= 9.0, c3 <= 9.0, c1 > 4.0, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6747 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 > 9.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6749 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c2 > 1.5, c4 > 1.0, c5 <= 3.5, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6751 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c2 > 1.5, c4 > 1.0, c5 > 3.5, c1 > 2.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6756 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c2 > 1.5, c4 <= 1.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6760 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c2 > 1.0, c1 > 1.0, c5 <= 13, c3 <= 1.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6770 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 <= 13, c2 > 3.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6771 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c5 > 1.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6781 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c1 > 1.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6782 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c1 > 1.5, c5 > 1.5, c3 <= 3.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6797 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 <= 7.0, c2 <= 5.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6798 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 <= 7.0, c2 > 5.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6799 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 <= 7.0, c2 > 5.0, c3 > 6.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6802 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 <= 4.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6805 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 4.5, c1 > 1.5, c2 > 5.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6807 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 4.5, c1 > 1.5, c2 > 5.5, c4 > 3.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6808 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 4.5, c1 > 1.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6811 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c5 > 1.5, c3 <= 3.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6814 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c5 > 1.5, c3 > 3.0, c2 <= 4.0, c1 > 4.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6815 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c5 > 1.5, c3 > 3.0, c2 > 4.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6820 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 <= 12.0, c1 > 2.0, c3 <= 12.0, c4 <= 13, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6824 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 <= 12.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6827 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 > 12.0, c3 > 5.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6832 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 <= 7.5, c4 > 2.0, c5 <= 9.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6833 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 <= 7.5, c4 > 2.0, c5 > 9.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6836 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 > 7.5, c4 <= 4.0, c2 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6838 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 > 7.5, c4 > 4.0, c5 > 4.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6844 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c3 > 1.5, c4 <= 2.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6847 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c3 > 1.5, c4 > 2.5, c1 > 1.5, c2 > 3.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6857 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 <= 7.0, c3 <= 9.5, c1 > 2.0, c4 > 4.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6858 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 <= 7.0, c3 <= 9.5, c1 > 2.0, c4 > 4.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6864 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 > 2.5, c2 <= 9.5, c1 <= 5.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6868 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 > 2.5, c2 <= 9.5, c1 > 5.0, c4 <= 9.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6872 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 > 2.5, c2 > 9.5, c4 > 9.0, c1 > 4.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6874 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c4 <= 3.5, c1 <= 8.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6876 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c4 > 3.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6877 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c4 > 3.5, c1 > 1.5, c2 <= 3.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6881 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c4 > 3.5, c1 > 1.5, c2 > 3.0, c3 > 1.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6884 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 3.5, c4 > 3.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6891 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 3.5, c3 > 2.5, c5 > 13, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6893 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 3.5, c3 > 2.5, c5 <= 13, c1 <= 9.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6895 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 3.5, c3 > 2.5, c5 <= 13, c1 > 9.5, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6896 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 <= 4.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6898 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 <= 4.0, c1 <= 5.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6904 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 > 4.0, c5 > 3.0, c2 <= 4.5, c3 > 6.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6907 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 > 4.0, c5 > 3.0, c2 > 4.5, c3 <= 13, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6910 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 <= 12.0, c5 <= 10.0, c2 <= 4.5, c1 <= 9.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6911 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 <= 12.0, c5 <= 10.0, c2 > 4.5, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6924 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 2.0, c3 > 5.0, c2 <= 10.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6925 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 2.0, c3 > 5.0, c2 <= 10.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6929 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 > 10.0, c2 > 2.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6934 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 <= 8.0, c4 > 3.5, c1 > 11.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6936 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 <= 8.0, c4 > 3.5, c1 <= 11.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6937 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 <= 8.0, c4 > 3.5, c1 <= 11.5, c2 <= 7.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6939 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 > 8.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6944 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 > 8.0, c4 > 4.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6945 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 <= 4.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6954 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 > 4.0, c2 > 2.0, c3 > 10.5, c1 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6955 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 > 4.0, c2 > 2.0, c3 > 10.5, c1 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6956 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 > 4.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6958 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c2 <= 5.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6959 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c2 > 5.0, c1 <= 4.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6963 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c2 > 5.0, c1 > 4.5, c4 > 3.5, c3 > 2.5, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6968 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 2.0, c1 > 1.0, c4 <= 11.0, c2 > 5.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6974 poker_hand = 5 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#6978 poker_hand = 5 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c3 <= 11.5, c1 > 1.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#6984 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 <= 6.0, c2 > 1.5, c5 <= 2.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6986 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 > 6.0, c1 <= 9.5, c2 <= 3.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6988 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 > 6.0, c1 <= 9.5, c2 > 3.5, c3 <= 10.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6996 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c2 <= 11.5, c1 <= 10.0, c4 > 5.0, c3 > 3.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7000 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c2 <= 11.5, c1 > 10.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7004 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c2 <= 11.5, c1 > 2.0, c3 <= 2.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7007 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c2 <= 11.5, c1 > 2.0, c3 > 2.5, c4 > 3.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7010 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7011 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c1 > 3.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7012 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c1 > 3.5, c2 > 3.5, c4 <= 8.0, c5 <= 3.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7021 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c4 > 5.0, c2 > 2.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7025 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c4 > 5.0, c2 > 2.0, c1 > 3.0, c3 > 4.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7027 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c1 <= 12.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7032 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7034 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 9.0, c2 <= 8.0, c3 > 3.5, c1 <= 10.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7036 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 9.0, c2 <= 8.0, c3 > 3.5, c1 > 10.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7042 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 9.0, c3 > 3.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7045 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 9.0, c3 > 3.0, c1 > 4.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7046 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 9.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7054 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c4 > 11.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7060 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 > 4.0, c2 <= 8.0, c5 > 9.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7062 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 > 4.0, c2 > 8.0, c4 > 1.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7074 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c5 > 1.5, c3 <= 12.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7075 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c5 > 1.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7079 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 <= 6.0, c2 > 6.5, c1 <= 9.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7082 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 <= 6.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7085 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c1 > 1.0, c2 > 1.0, c5 <= 10.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7092 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 <= 4.5, c1 <= 8.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7102 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 > 4.5, c5 <= 11, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7103 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.0, c2 > 2.0, c1 <= 4.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7106 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.0, c2 > 2.0, c1 > 4.0, c5 > 4.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7113 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 > 8.0, c1 > 5.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7118 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c3 > 2.5, c4 > 2.5, c1 <= 12.5, c2 > 1.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7120 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c3 > 2.5, c4 > 2.5, c1 <= 12.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7123 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 <= 3.0, c4 > 5.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7133 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 > 3.0, c1 > 3.0, c5 > 3.0, c3 > 9.0, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7142 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 > 5.0, c1 > 2.0, c2 > 9.0, c3 <= 10.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7151 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 <= 4.0, c1 > 3.5, c4 > 10.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7153 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 > 4.0, c4 <= 3.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7159 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 <= 11.0, c5 > 2.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7173 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 <= 12.0, c5 <= 10.5, c1 > 1.5, c2 <= 5.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7179 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 > 12.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7181 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 > 1.0, c3 > 11.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7182 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 > 1.0, c3 > 11.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7197 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 > 1.0, c4 > 8.0, c5 <= 11.5, c2 > 1.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7203 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 <= 11.0, c3 <= 13, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7206 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 <= 11.0, c3 <= 13, c1 > 2.0, c4 > 5.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7212 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 > 11.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7213 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7218 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 <= 13, c1 > 2.5, c2 > 1.0, c4 <= 9.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7227 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 <= 3.5, c2 > 5.5, c1 > 8.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7233 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 > 3.5, c1 > 1.0, c2 > 1.5, c4 > 5.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7235 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 > 3.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7244 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 <= 8.5, c3 > 11.0, c2 > 3.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7254 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 3, c3 > 1.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7256 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 <= 11.0, c5 > 1.0, c4 <= 1.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7261 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 > 11.0, c2 <= 6.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7269 poker_hand = 3 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 <= 10.0, c5 <= 8.5, c1 <= 8.5, c3 <= 7.5, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7274 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 <= 10.0, c5 > 8.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7280 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 4, c5 <= 13, c1 <= 3.5, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7284 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 4, c5 <= 13, c1 > 3.5, c4 <= 12, c3 <= 7.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7298 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 <= 7.5, c4 <= 12.5, c5 <= 7.0, c3 <= 3.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7301 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 <= 7.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7305 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 > 7.5, c5 > 2.5, c2 > 3.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7307 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 > 7.5, c5 > 2.5, c2 > 3.5, c3 <= 7.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7329 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 > 4.5, c2 > 1.5, c1 > 4.5, c4 > 4.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7333 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 3, c3 <= 13, c1 <= 3.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7335 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 3, c3 <= 13, c1 > 3.0, c4 > 13, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7340 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 <= 3.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7342 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 > 3.5, c5 <= 10.0, c3 <= 3.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7349 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 > 3.5, c5 > 10.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7352 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 1, c4 <= 3.0, c1 > 1.0, c2 <= 7.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7358 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 1, c4 > 3.0, c3 > 1.5, c1 <= 11.5, c5 > 4.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7360 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 4, c1 > 2.0, c3 > 3.0, c2 <= 3.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7365 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 4, c1 > 2.0, c3 > 3.0, c2 > 3.0, c5 <= 13, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7366 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 4, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7373 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 3, c5 > 1.5, c2 > 3.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7374 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 2, c5 <= 1.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7376 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 2, c5 > 1.5, c1 > 2.0, c2 > 1.0, c3 > 2.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7378 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 2, c5 > 1.5, c1 > 2.0, c2 > 1.0, c3 <= 2.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7380 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 2, c5 > 1.5, c1 > 2.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7381 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 2, c5 > 1.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7385 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 > 11.5, c1 > 5.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7386 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 <= 11.5, c2 <= 9.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7387 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 <= 11.5, c2 <= 9.5, c5 > 2.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7389 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 <= 11.5, c2 <= 9.5, c5 > 2.5, c1 > 4.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7391 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 <= 11.5, c2 > 9.5, c1 <= 9.5, c4 > 4.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7392 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 <= 11.5, c2 > 9.5, c1 <= 9.5, c4 > 4.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7395 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 > 5.5, c4 <= 12.5, c3 <= 9.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7397 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 > 5.5, c4 <= 12.5, c3 <= 9.5, c1 > 6.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7403 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 <= 5.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7412 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 > 4.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7413 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 > 4.5, c1 > 2.5, c2 > 5.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7419 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 2, c5 <= 11.5, c1 <= 10.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7429 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 <= 11.0, c2 > 11.5, c4 <= 10.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7432 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 <= 11.0, c2 <= 11.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7433 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 <= 11.0, c2 <= 11.5, c3 > 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7442 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 4, c1 <= 9.0, c5 > 4.0, c2 > 3.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7444 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 4, c1 <= 9.0, c5 > 4.0, c2 > 3.0, c3 > 3.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7449 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 3, c1 > 1.0, c2 > 1.0, c3 > 1.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7452 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 3, c1 > 1.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7462 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 <= 6.0, c1 > 2.5, c3 > 2.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7465 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 1, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7466 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 1, c1 <= 13, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7477 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 4, c3 <= 11.5, c5 <= 13, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7480 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 4, c3 <= 11.5, c5 <= 13, c1 > 2.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7481 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 3, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7512 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 <= 8.0, c4 <= 5.0, c5 <= 8.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7522 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 > 8.0, c4 > 5.0, c5 > 9.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7524 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 > 7.0, c5 <= 6.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7527 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 > 7.0, c5 > 6.0, c3 <= 11.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7534 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 <= 7.0, c5 > 2.0, c4 > 4.5, c3 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7536 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 <= 7.0, c5 <= 2.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7562 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 <= 10.0, c2 <= 10.0, c3 <= 12.0, c5 <= 8.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7565 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 <= 10.0, c2 <= 10.0, c3 <= 12.0, c5 > 8.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7572 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 > 10.0, c4 > 2.5, c2 <= 6.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7578 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 <= 2.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7589 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 <= 10.0, c1 > 1.0, c4 > 2.0, c3 <= 4.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7595 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 > 10.0, c1 <= 8.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7596 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 > 10.0, c1 <= 8.0, c5 <= 7.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7598 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 > 10.0, c1 > 8.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7600 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 1, c3 <= 9.5, c1 <= 12.5, c4 > 1.0, c5 > 2.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7606 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 1, c3 > 9.5, c1 <= 8.5, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7612 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 4, c1 > 2.5, c2 <= 12.5, c5 > 3.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7617 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 3, c1 > 1.0, c3 <= 13, c2 <= 3.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7621 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 3, c1 > 1.0, c3 <= 13, c2 > 3.0, c4 <= 13, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7624 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 2, c4 <= 10.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7625 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 2, c4 <= 10.0, c3 > 2.5, c1 <= 6.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7635 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 <= 5.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7636 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 > 5.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7642 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 > 5.0, c2 > 3.0, c1 <= 5.5, c3 > 6.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7649 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 4, c3 > 6.5, c1 > 1.0, c2 > 4.0, c4 <= 10.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7651 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 4, c3 > 6.5, c1 > 1.0, c2 > 4.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7653 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 3, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7657 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 3, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 <= 3.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7660 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 3, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7662 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 2, c4 <= 13, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7670 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 1, c1 <= 10.5, c2 > 1.5, c3 <= 3.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7674 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 1, c1 <= 10.5, c2 > 1.5, c3 > 3.0, c4 > 6.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7676 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 1, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7677 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 4, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7678 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 4, c1 > 1.0, c2 > 1.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7681 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 4, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7682 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 4, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7683 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 3, c1 > 2.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7695 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 2, c5 <= 11, c1 <= 3.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7700 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 2, c5 <= 11, c1 > 3.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7702 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 1, c1 > 2.0, c5 > 2.0, c2 > 2.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7706 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 1, c1 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7710 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 4, c5 > 3.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7715 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 > 2.0, c4 <= 12.0, c1 <= 10.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7723 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 > 2.0, c4 > 12.0, c1 > 2.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7727 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 <= 2.0, c5 > 7.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7734 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 <= 6.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7736 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 > 6.5, c2 > 1.0, c3 > 7.0, c4 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7737 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 > 6.5, c2 > 1.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7743 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 1, c2 > 7.0, c1 > 5.0, c4 > 3.0, c3 <= 9.5, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7745 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 1, c2 > 7.0, c1 > 5.0, c4 <= 3.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7747 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 1, c2 <= 7.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7754 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 > 2.5, c4 <= 13, c1 <= 11.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7756 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 > 2.5, c4 <= 13, c1 <= 11.0, c2 > 3.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7761 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 <= 4.0, c1 <= 12.0, c4 <= 10.5, c3 <= 5.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7772 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 <= 8.0, c1 <= 12, c4 > 3.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7775 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 > 8.0, c1 > 4.5, c4 <= 6, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7786 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7789 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 <= 7.5, c5 <= 9.0, c3 > 6.0, c1 > 8.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7793 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 <= 7.5, c5 > 9.0, c3 <= 12.5, c1 > 5.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7808 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 <= 11.0, c3 > 1.0, c4 <= 9.0, c1 > 12.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7810 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 <= 11.0, c3 > 1.0, c4 > 9.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7812 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 <= 11.0, c3 > 1.0, c4 > 9.0, c1 > 6.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7814 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 <= 11.0, c3 <= 1.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7816 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 > 11.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7817 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 <= 3.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7827 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 > 9.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7831 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 <= 8.0, c1 <= 13, c4 > 2.0, c3 <= 5.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7832 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 <= 8.0, c1 <= 13, c4 > 2.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7837 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 > 8.0, c5 <= 7.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7848 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 > 6.5, c2 > 4.0, c4 > 5.0, c3 > 4.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7849 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 > 6.5, c2 > 4.0, c4 > 5.0, c3 <= 4.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7852 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 2.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7854 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 2.5, c5 > 11.5, c1 <= 10.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7860 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 2.5, c5 <= 11.5, c1 > 1.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7862 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 > 2.0, c1 <= 1.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7867 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 > 2.0, c1 > 1.5, c2 > 3.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7881 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 > 4.5, c3 > 3.0, c4 <= 8.0, c5 <= 4.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7882 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 > 4.5, c3 > 3.0, c4 > 8.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7889 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 > 8.5, c1 <= 9.5, c3 <= 11, c2 > 7.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7891 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 > 8.5, c1 > 9.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7892 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 <= 8.5, c1 <= 9.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7894 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 <= 8.5, c1 <= 9.5, c2 > 2.5, c3 <= 10.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7895 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 <= 8.5, c1 <= 9.5, c2 > 2.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7896 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 <= 8.5, c1 > 9.5, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7897 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 <= 8.5, c1 > 9.5, c2 > 10.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7900 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 <= 3.5, c1 > 4.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7905 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 > 3.5, c1 > 2.0, c4 > 2.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7912 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 12.0, c3 > 2.0, c4 > 2.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7915 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 12.0, c3 <= 2.0, c2 > 5.0, c4 <= 11.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7922 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c4 > 1.0, c1 > 2.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7923 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c4 > 1.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7926 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 > 2.0, c3 <= 12.5, c4 <= 5.0, c1 <= 11.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7928 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 > 2.0, c3 <= 12.5, c4 > 5.0, c1 <= 2.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7933 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 <= 2.0, c1 > 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7939 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 <= 5.0, c4 <= 10.0, c3 <= 6.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7945 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 > 5.0, c3 > 1.5, c5 <= 11.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7954 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 3.0, c3 > 1.0, c2 > 2.0, c4 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7956 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 3.0, c3 > 1.0, c2 > 2.0, c4 <= 2.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7958 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 3.0, c3 > 1.0, c2 <= 2.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7986 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 > 10.0, c3 <= 8.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7988 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 > 10.0, c3 > 8.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7993 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 <= 9.0, c3 > 3.0, c5 > 3.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7994 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 <= 9.0, c3 > 3.0, c5 > 3.5, c1 > 2.5, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8010 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c1 <= 11.5, c5 > 3.5, c2 > 1.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8013 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 <= 9.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8018 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 > 9.5, c2 <= 2.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8020 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 > 9.5, c2 > 2.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8021 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 > 9.5, c2 > 2.5, c3 > 3.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8024 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 <= 10.5, c3 > 2.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8038 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 <= 4.0, c3 > 2.5, c1 > 3.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8039 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 <= 4.0, c3 > 2.5, c1 > 3.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8040 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 > 4.0, c1 > 1.0, c4 <= 10.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8047 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 11.0, c1 > 5.5, c5 > 2.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8049 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 11.0, c1 > 5.5, c5 > 2.5, c3 > 8.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8057 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c2 > 1.0, c5 > 12.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8062 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 <= 3.0, c2 > 1.0, c3 > 3.0, c4 <= 6.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8064 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 <= 3.0, c2 > 1.0, c3 > 3.0, c4 > 6.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8079 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 > 7.0, c2 <= 6.5, c1 > 5.0, c3 > 3.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8080 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 > 7.0, c2 <= 6.5, c1 > 5.0, c3 > 3.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8082 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 > 7.0, c2 > 6.5, c1 > 9.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8087 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 <= 7.0, c1 <= 12.5, c2 <= 12, c3 > 1.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8093 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 > 5.5, c1 > 2.0, c2 > 3.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8098 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 <= 5.5, c2 <= 13, c1 <= 10.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8108 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 > 3.5, c2 > 4.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8124 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 <= 7.5, c3 > 7.5, c1 > 6.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8131 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 <= 3.5, c1 <= 10.0, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8139 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 > 3.5, c1 > 6.5, c2 > 8.5, c3 <= 8.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8153 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 > 10.5, c3 > 5.5, c4 > 4.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8154 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 > 10.5, c3 > 5.5, c4 > 4.0, c1 > 4.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8161 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c4 > 1.5, c1 > 3.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8178 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c5 > 1.5, c3 > 1.0, c1 <= 11.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8181 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c5 > 1.5, c3 > 1.0, c1 > 11.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8187 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 1.5, c5 > 2.0, c1 <= 10.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8188 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 1.5, c5 > 2.0, c1 <= 10.5, c2 > 3.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8191 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 1.5, c5 > 2.0, c1 > 10.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8192 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 1.5, c5 <= 2.0, c1 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8197 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 <= 5.0, c3 > 3.5, c4 <= 8.0, c1 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8201 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 > 5.0, c1 <= 6.0, c4 > 2.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8202 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 > 5.0, c1 > 6.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8203 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 > 5.0, c1 > 6.0, c3 <= 7.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8204 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 > 5.0, c1 > 6.0, c3 <= 7.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8207 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 3, c2 > 1.5, c1 > 1.0, c3 <= 12.0, c4 > 1.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8211 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 3, c2 > 1.5, c1 > 1.0, c3 > 12.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8214 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 <= 2.5, c1 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8216 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 <= 7.5, c5 <= 3.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8221 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 <= 7.5, c5 > 3.0, c1 > 5.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8227 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 1, c5 <= 4.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8228 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 1, c5 > 4.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8231 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 1, c5 > 4.0, c1 <= 13, c2 > 2.5, c3 <= 11.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8235 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 <= 5.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8247 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 <= 8.0, c4 <= 13, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8256 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 > 9.0, c2 > 7.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8266 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 <= 11.0, c2 <= 5.0, c1 > 4.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8270 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 <= 11.0, c2 > 5.0, c5 > 11.0, c1 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8271 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 > 11.0, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8273 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 <= 1.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8275 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8277 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 > 1.5, c4 > 1.0, c3 <= 3.0, c2 > 1.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8278 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 > 1.5, c4 > 1.0, c3 <= 3.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8281 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 > 1.5, c4 > 1.0, c3 > 3.0, c5 > 6.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8289 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 <= 4.5, c3 > 4.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8294 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 > 4.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8304 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 3, c4 > 4.5, c3 > 3.5, c1 <= 12, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8307 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 <= 3.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8311 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 > 3.5, c4 > 3.0, c1 > 4.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8319 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 <= 3.5, c1 > 8.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8321 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 > 3.5, c3 <= 9.0, c1 <= 6.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8326 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 > 3.5, c3 > 9.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8330 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 13, c2 > 1.0, c5 <= 11.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8331 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 13, c2 > 1.0, c5 > 11.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8333 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 13, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8335 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 4, c1 <= 1.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8344 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 > 10.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8350 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 > 11.5, c3 > 1.0, c2 > 8.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8355 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 <= 11.5, c3 > 3.0, c4 <= 5.0, c2 <= 11.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8357 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 <= 11.5, c3 > 3.0, c4 > 5.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8358 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 <= 11.5, c3 > 3.0, c4 > 5.0, c2 > 2.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8364 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 1, c1 <= 12.0, c2 > 1.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8367 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 1, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8371 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 > 4.5, c1 > 7.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8373 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 > 4.5, c1 > 7.0, c2 > 2.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8380 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 <= 12.0, c1 <= 5.0, c3 <= 12.5, c5 > 1.0, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8381 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 <= 12.0, c1 <= 5.0, c3 <= 12.5, c5 > 1.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8386 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 <= 12.0, c1 > 5.0, c2 > 1.0, c3 > 9.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8390 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 <= 10.0, c1 > 2.0, c4 <= 7.5, c2 <= 8.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8395 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 <= 10.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8398 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 > 10.0, c2 > 1.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8404 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 13, c1 <= 12.5, c4 > 8.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8405 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 13, c1 <= 12.5, c4 > 8.0, c2 > 6.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8406 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 13, c1 <= 12.5, c4 > 8.0, c2 > 6.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8407 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 13, c1 > 12.5, c5 <= 9.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8409 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 13, c1 > 12.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8424 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 > 8.5, c2 <= 6.5, c3 > 9.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8425 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 > 8.5, c2 <= 6.5, c3 > 9.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8429 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 <= 8.5, c2 > 7.0, c4 > 8.5, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8430 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 <= 8.5, c2 <= 7.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8435 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c1 > 1.0, c4 <= 12.0, c2 > 4.0, c3 <= 4.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8438 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c1 > 1.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8439 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8440 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c4 > 13, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8443 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c4 <= 13, c2 <= 12.0, c1 > 2.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8446 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c4 <= 13, c2 <= 12.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8447 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c4 <= 13, c2 > 12.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8451 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 10.5, c2 <= 11.5, c1 <= 10.0, c3 > 5.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8453 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 10.5, c2 <= 11.5, c1 > 10.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8455 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 > 10.5, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8457 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 > 2.0, c3 > 2.0, c4 <= 2.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8458 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 > 2.0, c3 > 2.0, c4 <= 2.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8461 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 > 2.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8468 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c3 <= 12, c2 > 1.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8478 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 > 7.0, c2 > 2.0, c5 <= 13, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8480 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 <= 7.0, c5 <= 10.5, c1 <= 6.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8492 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 <= 5.0, c5 > 3.5, c1 > 10.0, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8494 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 > 5.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8497 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 > 5.0, c1 > 1.5, c5 > 9.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8498 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 > 5.0, c1 > 1.5, c5 > 9.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8500 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 > 2.0, c5 <= 6.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8503 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 > 2.0, c5 > 6.5, c4 <= 5.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8504 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 > 2.0, c5 > 6.5, c4 > 5.0, c2 <= 7.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8505 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 > 2.0, c5 > 6.5, c4 > 5.0, c2 <= 7.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8506 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 > 2.0, c5 > 6.5, c4 > 5.0, c2 > 7.5, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8514 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c5 > 4.5, c3 <= 13, c4 <= 12.5, c1 > 7.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8520 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c2 > 4.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8522 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c2 > 4.0, c4 > 3.0, c5 > 1.5, c1 <= 4.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8525 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c2 > 4.0, c4 > 3.0, c5 > 1.5, c1 > 4.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8526 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 > 11.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8530 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 <= 11.5, c4 <= 8.5, c1 > 5.0, c2 <= 3.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8532 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 <= 11.5, c4 <= 8.5, c1 > 5.0, c2 > 3.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8535 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 <= 11.5, c4 > 8.5, c3 > 2.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8542 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 <= 5.0, c3 > 1.5, c1 > 9.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8548 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 > 5.0, c5 > 10.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8550 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c3 <= 13, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8551 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c3 <= 13, c1 > 2.5, c2 <= 6.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8559 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 <= 3.0, c4 <= 3.5, c1 > 8.0, c2 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8566 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 <= 11.0, c4 > 1.5, c3 <= 5.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8586 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 7.0, c3 <= 13, c4 > 3.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8588 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 7.0, c3 <= 13, c4 > 3.5, c2 > 3.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8589 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 7.0, c3 > 7.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8591 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 7.0, c3 <= 7.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8594 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 7.0, c3 <= 7.0, c5 <= 8.0, c2 > 9.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8600 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c4 <= 13, c1 > 2.0, c5 > 1.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8606 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 <= 13, c1 <= 8.0, c4 <= 11.0, c2 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8607 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 <= 13, c1 <= 8.0, c4 > 11.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8608 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 <= 13, c1 <= 8.0, c4 > 11.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8612 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 <= 13, c1 > 8.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8632 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 <= 5.0, c4 > 6.0, c2 <= 5.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8633 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 <= 5.0, c4 > 6.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8635 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 > 5.0, c4 <= 9.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8642 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 > 7.5, c1 > 4.0, c2 <= 5.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8643 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 > 7.5, c1 > 4.0, c2 > 5.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8644 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 > 7.5, c1 > 4.0, c2 > 5.0, c3 <= 11.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8647 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 <= 3.0, c4 > 4.5, c1 <= 11.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8651 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 > 3.0, c2 > 1.0, c1 <= 9.0, c5 <= 5.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8659 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c4 > 11.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8665 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c4 <= 11.5, c5 <= 11.0, c1 <= 12.0, c2 <= 5.5, c3 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8679 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 > 11.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8682 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 <= 10.5, c1 <= 12.5, c3 > 1.0, c5 > 11.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8683 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 <= 10.5, c1 <= 12.5, c3 > 1.0, c5 > 11.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8689 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 > 10.5, c2 > 7.0, c1 > 4.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8694 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 > 10.5, c2 <= 7.0, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8696 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 <= 8.0, c1 <= 8.0, c4 > 2.0, c3 > 3.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8699 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 <= 8.0, c1 > 8.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8701 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 > 8.0, c1 <= 9.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8703 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 > 8.0, c1 > 9.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8715 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 <= 2.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8718 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 > 2.5, c2 <= 11, c3 > 7.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8720 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 > 2.5, c2 <= 11, c3 <= 7.5, c4 > 1.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8721 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 > 2.5, c2 <= 11, c3 <= 7.5, c4 > 1.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8730 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 > 5.0, c3 > 8.0, c4 <= 12.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8732 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8734 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 > 2.0, c4 <= 3.0, c5 > 1.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8741 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 > 2.0, c4 > 3.0, c1 > 9.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8742 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 <= 2.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8744 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 <= 4.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8749 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 > 4.5, c1 <= 4.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8751 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 > 4.5, c1 > 4.5, c2 <= 13, c3 <= 8.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8753 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 > 4.5, c1 > 4.5, c2 <= 13, c3 > 8.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8754 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 > 4.5, c1 > 4.5, c2 <= 13, c3 > 8.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8760 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 3, c1 > 3.0, c2 <= 8.0, c3 > 4.0, c4 > 2.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8762 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 3, c1 > 3.0, c2 > 8.0, c5 > 4.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8765 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 2, c3 > 2.0, c4 > 1.0, c1 <= 7.5, c2 <= 11.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8767 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 2, c3 > 2.0, c4 > 1.0, c1 > 7.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8776 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 1, c3 > 2.0, c4 > 1.5, c5 > 1.5, c1 > 2.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8777 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 1, c3 > 2.0, c4 > 1.5, c5 > 1.5, c1 <= 2.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8781 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 <= 8.0, c4 <= 4.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8784 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 <= 8.0, c4 > 4.5, c3 > 2.5, c2 <= 12.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8793 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 > 8.0, c5 <= 13, c3 > 3.0, c2 > 12.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8798 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 <= 13, c5 <= 3.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8806 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c4 > 2.0, c5 > 6.0, c1 <= 7.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8807 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c4 > 2.0, c5 > 6.0, c1 <= 7.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8814 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 <= 12.0, c4 <= 10.0, c1 > 1.0, c5 <= 4.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8817 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 <= 12.0, c4 <= 10.0, c1 > 1.0, c5 > 4.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8818 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 <= 12.0, c4 <= 10.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8823 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 > 12.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8828 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 4, c4 > 2.0, c1 > 1.0, c3 > 2.5, c5 > 10.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8830 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 4, c4 > 2.0, c1 <= 1.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8832 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 4, c4 <= 2.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8837 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 3, c5 <= 12.0, c3 > 2.5, c1 > 1.0, c2 > 7.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8842 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 <= 2.5, c1 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8855 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 <= 1.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8858 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 <= 10.0, c1 <= 10.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8864 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 > 10.0, c1 > 5.0, c3 <= 8.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8870 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 <= 2.5, c4 <= 8.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8871 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 > 2.5, c1 <= 12.5, c2 > 2.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8872 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 > 2.5, c1 <= 12.5, c2 > 2.0, c4 > 2.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8876 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 > 2.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8880 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 > 3.5, c3 > 11.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8881 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 > 3.5, c3 <= 11.5, c4 <= 10.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8884 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 > 3.5, c3 <= 11.5, c4 > 10.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8887 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 2, c2 > 1.0, c4 <= 12.0, c5 <= 9.0, c1 <= 2.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8888 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 2, c2 > 1.0, c4 <= 12.0, c5 <= 9.0, c1 <= 2.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8894 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 2, c2 > 1.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8906 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 > 8.0, c3 > 2.5, c2 > 10.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8908 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 > 8.0, c3 > 2.5, c2 > 10.0, c4 > 3.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8913 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 4, c4 <= 11.0, c5 > 2.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8919 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 > 8.5, c1 > 5.0, c2 <= 8.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8921 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 > 8.5, c1 > 5.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8923 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 <= 8.5, c1 <= 11.0, c2 <= 10.5, c3 <= 3.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8927 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 <= 8.5, c1 <= 11.0, c2 > 10.5, c3 <= 7.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8944 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 1, c2 > 1.5, c5 <= 10.5, c3 > 4.5, c1 > 6.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8948 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 4, c1 <= 10.0, c2 > 2.0, c3 > 2.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8951 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 4, c1 <= 10.0, c2 > 2.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8952 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 4, c1 <= 10.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8960 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 3, c3 > 4.5, c1 > 7.0, c2 > 1.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8969 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 <= 5.0, c2 > 4.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8970 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 > 5.0, c2 <= 11.0, c4 <= 3.5, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8973 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 > 5.0, c2 <= 11.0, c4 > 3.5, c3 <= 4.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8974 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 > 5.0, c2 <= 11.0, c4 > 3.5, c3 > 4.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8981 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 1, c5 > 2.5, c1 <= 12.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8984 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 1, c5 > 2.5, c1 <= 12.5, c4 > 1.5, c2 > 6.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8986 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 1, c5 > 2.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8990 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 4, c1 <= 13, c3 > 11.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8997 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 <= 8.0, c2 <= 5.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9011 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 <= 8.0, c2 <= 8.5, c5 > 11.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9012 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 <= 8.0, c2 <= 8.5, c5 <= 11.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9014 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 <= 8.0, c2 <= 8.5, c5 <= 11.5, c1 > 4.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9015 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 > 8.0, c1 <= 6.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9016 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 > 8.0, c1 <= 6.5, c2 > 6.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9018 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 > 8.0, c1 > 6.5, c5 <= 5.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9027 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 <= 4.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9029 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 > 4.0, c4 > 5.5, c2 > 1.0, c1 > 5.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9032 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 > 4.0, c4 <= 5.5, c2 <= 2.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9038 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c3 <= 11.5, c1 <= 3.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9040 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c3 <= 11.5, c1 > 3.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9041 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c3 <= 11.5, c1 > 3.0, c2 > 2.5, c4 <= 10.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9043 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c3 <= 11.5, c1 > 3.0, c2 > 2.5, c4 > 10.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9046 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c2 <= 13, c3 <= 10.0, c4 > 1.0, c1 <= 5.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9047 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c2 <= 13, c3 <= 10.0, c4 > 1.0, c1 <= 5.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9050 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c2 <= 13, c3 <= 10.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9052 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c2 <= 13, c3 > 10.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9063 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 9.5, c5 > 5.0, c2 > 1.0, c3 > 3.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9072 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c2 > 5.0, c4 <= 12.0, c5 > 3.0, c1 > 2.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9079 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 > 2.0, c1 <= 12.0, c3 > 12.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9081 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 > 2.0, c1 > 12.0, c3 > 7.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9093 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 <= 10.5, c2 > 4.0, c3 > 3.0, c4 > 3.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9094 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 > 10.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9096 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 5.5, c5 <= 10.5, c3 <= 5.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9097 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 5.5, c5 <= 10.5, c3 <= 5.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9098 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 5.5, c5 <= 10.5, c3 > 5.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9102 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 <= 5.5, c3 > 2.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9103 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 <= 5.5, c3 > 2.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9112 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 <= 2.5, c2 > 9.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9118 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 > 2.5, c5 > 3.0, c2 > 9.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9119 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 > 2.5, c5 > 3.0, c2 > 9.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9133 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.5, c1 > 1.0, c2 > 2.0, c3 <= 7.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9134 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.5, c1 > 1.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9139 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c2 <= 13, c5 > 1.0, c3 > 5.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9141 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c2 <= 13, c5 > 1.0, c3 <= 5.5, c4 <= 3.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9143 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c2 <= 13, c5 > 1.0, c3 <= 5.5, c4 > 3.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9144 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c2 <= 13, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9147 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 7.0, c4 > 8.5, c5 > 1.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9150 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 7.0, c4 <= 8.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9153 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 7.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9158 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9165 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c1 > 1.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9172 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 > 2.5, c2 > 1.0, c3 > 1.5, c4 <= 7.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9185 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 <= 13, c1 <= 12, c3 > 9.5, c5 <= 7.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9187 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 <= 13, c1 <= 12, c3 > 9.5, c5 > 7.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9192 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 > 1.5, c1 <= 9.5, c2 > 5.5, c3 > 1.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9198 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 > 1.5, c1 > 9.5, c2 > 3.5, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9206 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 <= 11.5, c1 <= 3.0, c3 <= 10.0, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9219 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 <= 12.5, c1 > 8.0, c3 <= 11.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9220 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 <= 12.5, c1 > 8.0, c3 <= 11.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9228 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 2, c3 > 1.0, c1 > 1.0, c2 > 4.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9230 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 2, c3 > 1.0, c1 > 1.0, c2 > 4.5, c4 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9234 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 1, c1 > 1.0, c2 > 1.0, c3 <= 12.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9235 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 1, c1 > 1.0, c2 > 1.0, c3 <= 12.5, c4 > 1.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9237 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 1, c1 > 1.0, c2 > 1.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9243 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 <= 2.5, c4 <= 8, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9245 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 > 2.5, c4 <= 10.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9247 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 > 2.5, c4 <= 10.0, c2 > 2.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9254 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 3, c5 <= 10.0, c3 <= 13, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9258 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 3, c5 <= 10.0, c3 <= 13, c1 > 3.5, c2 > 3.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9264 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 <= 11.0, c4 <= 1.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9275 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 <= 12.0, c5 <= 9.0, c3 <= 8.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9278 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 <= 12.0, c5 <= 9.0, c3 > 8.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9282 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 <= 12.0, c5 > 9.0, c3 > 6.0, c4 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9285 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 > 12.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9289 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 > 7.0, c1 > 4.5, c2 <= 3.5, c4 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9296 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 <= 7.0, c1 > 1.5, c2 > 4.0, c4 <= 10.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9311 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 2, c4 > 2.0, c5 <= 13, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9315 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 2, c4 > 2.0, c5 <= 13, c1 > 2.5, c2 <= 11.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9316 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 2, c4 <= 2.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9344 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 <= 11.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9349 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 <= 11.5, c1 > 2.5, c2 > 11.0, c4 > 2.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9350 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 <= 11.5, c1 > 2.5, c2 > 11.0, c4 > 2.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9352 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 > 11.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9354 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 > 11.5, c5 > 6.5, c1 > 4.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9358 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 <= 11.5, c1 > 2.0, c3 > 2.5, c4 <= 11.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9371 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 <= 10.5, c4 > 1.5, c2 > 7.5, c1 > 5.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9374 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 > 10.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9376 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 <= 10.5, c1 <= 13, c4 <= 2.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9378 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 <= 10.5, c1 <= 13, c4 <= 2.5, c2 <= 7.0, c5 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9385 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 > 10.5, c1 > 3.5, c2 > 1.5, c4 <= 11.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9388 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 <= 8.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9393 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 > 8.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9394 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 > 8.0, c2 > 3.0, c4 > 7.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9404 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 2, c1 > 1.0, c3 > 1.0, c5 > 1.5, c2 > 11.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9407 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 2, c1 <= 1.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9422 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 4, c1 <= 11.5, c3 > 4.0, c4 <= 11, c2 > 5.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9431 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 <= 8.0, c5 > 9.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9433 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 <= 8.0, c5 > 9.0, c4 <= 13, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9434 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 > 8.0, c2 > 2.0, c4 > 2.5, c3 <= 10.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9438 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 > 8.0, c2 > 2.0, c4 <= 2.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9443 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 > 2.0, c1 <= 12.5, c2 > 10.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9451 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 <= 4.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9457 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 > 4.5, c2 <= 11.5, c1 > 2.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9462 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 > 2.0, c4 <= 9.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9463 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 > 2.0, c4 <= 9.0, c1 > 1.5, c2 > 2.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9465 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 > 2.0, c4 <= 9.0, c1 > 1.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9470 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 > 2.0, c4 > 9.0, c5 > 6.0, c1 <= 7.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9475 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 <= 6.5, c3 <= 4.0, c1 > 2.0, c2 <= 8.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9483 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 > 6.5, c1 <= 10.5, c2 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9488 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 <= 4.0, c2 > 5.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9490 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 <= 4.0, c2 > 5.0, c4 <= 9.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9493 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 > 4.0, c2 <= 5.0, c5 > 7.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9499 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 > 4.0, c2 > 5.0, c4 > 2.5, c3 <= 5.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9502 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 1, c1 <= 13, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9508 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 4, c5 <= 12.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9509 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 4, c5 <= 12.5, c1 <= 11.5, c2 <= 6.5, c3 <= 6.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9512 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 4, c5 <= 12.5, c1 <= 11.5, c2 > 6.5, c3 <= 6.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9513 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 4, c5 <= 12.5, c1 <= 11.5, c2 > 6.5, c3 <= 6.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9514 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 4, c5 <= 12.5, c1 <= 11.5, c2 > 6.5, c3 > 6.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9516 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 4, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9522 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 3, c2 > 1.5, c1 > 1.0, c4 > 11.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9527 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 2, c2 > 4.0, c5 <= 2.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9538 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 <= 9.5, c4 <= 10.0, c1 > 6.0, c2 > 4.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9539 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 <= 9.5, c4 <= 10.0, c1 > 6.0, c2 > 4.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9540 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 <= 9.5, c4 > 10.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9547 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 > 1.0, c2 <= 9.0, c5 <= 4.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9548 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 > 1.0, c2 <= 9.0, c5 > 4.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9554 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9557 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 <= 12.0, c3 > 1.5, c5 <= 3.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9561 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 <= 12.0, c3 > 1.5, c5 > 3.0, c1 <= 2.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9564 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 > 12.0, c1 > 5.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9580 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 > 8.0, c2 > 5.0, c3 <= 7.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9582 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 > 8.0, c2 > 5.0, c3 > 7.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9591 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 4, c1 > 1.0, c3 > 3.0, c2 <= 13, c4 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9598 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 3, c1 > 3.0, c5 <= 10.5, c4 > 3.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9609 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 > 4.0, c4 <= 8.0, c3 > 3.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9610 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 > 4.0, c4 > 8.0, c3 <= 3.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9620 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 1, c2 > 5.0, c1 > 2.5, c3 <= 7.0, c5 > 3.5, c4 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9623 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 4, c3 > 2.0, c1 <= 9.0, c2 > 3.5, c5 > 5.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9626 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 4, c3 > 2.0, c1 <= 9.0, c2 > 3.5, c5 <= 5.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9627 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 4, c3 > 2.0, c1 > 9.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9629 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 4, c3 <= 2.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9635 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 3, c1 > 4.0, c2 > 2.5, c5 > 8.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9638 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 3, c1 > 4.0, c2 > 2.5, c5 <= 8.5, c3 > 3.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9639 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 3, c1 > 4.0, c2 > 2.5, c5 <= 8.5, c3 > 3.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9640 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 <= 9.5, c3 <= 5.0, c5 > 8.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9645 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 <= 9.5, c3 > 5.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9646 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 <= 9.5, c3 > 5.0, c2 > 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9647 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 <= 9.5, c3 > 5.0, c2 > 2.5, c4 > 2.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9655 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 1, c2 > 1.0, c4 <= 11, c1 > 4.0, c3 > 3.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9658 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 4, c3 <= 4.5, c5 > 1.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9659 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 4, c3 <= 4.5, c5 > 1.5, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9661 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 4, c3 > 4.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9665 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 4, c3 > 4.5, c1 > 1.5, c5 <= 13, c2 > 6.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9671 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 3, c4 > 1.0, c5 <= 13, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9673 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 <= 11.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9674 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 <= 11.0, c1 > 1.5, c4 <= 1.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9680 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 > 11.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9685 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 > 2.0, c2 <= 7.5, c1 <= 2.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9692 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 <= 2.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9704 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 > 2.0, c5 <= 2.5, c3 > 2.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9705 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 > 2.0, c5 > 2.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9714 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 2, c1 <= 10.0, c3 > 2.5, c2 <= 2.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9718 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 2, c1 <= 10.0, c3 > 2.5, c2 > 2.5, c4 > 1.5, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9726 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 1, c4 > 1.0, c2 > 1.5, c5 > 6.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9732 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 4, c2 > 1.0, c3 > 11.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9733 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 4, c2 > 1.0, c3 <= 11.5, c1 > 2.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9734 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 4, c2 > 1.0, c3 <= 11.5, c1 > 2.0, c4 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9736 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 4, c2 > 1.0, c3 <= 11.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9745 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 2, c2 <= 1.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9747 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 2, c2 > 1.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9748 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 2, c2 > 1.5, c1 > 1.5, c3 > 1.0, c4 <= 4.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9752 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 2, c2 > 1.5, c1 > 1.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9755 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 > 5.0, c3 > 1.0, c5 <= 11.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9759 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 > 5.0, c3 > 1.0, c5 > 11.0, c2 <= 5.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9769 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 <= 13, c4 > 10.0, c3 > 2.5, c2 <= 12.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9770 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 <= 13, c4 > 10.0, c3 > 2.5, c2 <= 12.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9773 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 <= 13, c4 > 10.0, c3 <= 2.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9774 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 3, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9781 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 3, c1 > 1.5, c2 > 3.0, c3 <= 13, c4 > 4.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9784 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 <= 3.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9785 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 > 3.5, c1 <= 3.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9787 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 > 3.5, c1 > 3.5, c2 > 7.0, c3 <= 9.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9788 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 > 3.5, c1 > 3.5, c2 > 7.0, c3 <= 9.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9792 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 > 3.5, c1 > 3.5, c2 <= 7.0, c5 > 3.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9794 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 1, c3 > 1.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9802 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 4, c2 > 3.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9805 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 4, c2 > 3.0, c1 > 1.5, c3 <= 6.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9809 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 4, c2 > 3.0, c1 > 1.5, c3 > 6.5, c5 <= 5.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9814 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 > 7.0, c1 <= 12.5, c5 > 6.0, c3 > 6.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9817 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 <= 7.0, c3 <= 3.5, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9819 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 <= 7.0, c3 > 3.5, c1 <= 8.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9822 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 <= 7.0, c3 > 3.5, c1 > 8.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9836 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 <= 5.5, c1 > 6.0, c3 > 5.0, c4 > 2.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9837 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 <= 5.5, c1 > 6.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9839 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 1, c1 <= 12.5, c3 <= 5.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9842 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c1 <= 4.0, c3 <= 10.0, c4 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9850 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c1 > 4.0, c3 > 1.5, c4 > 9.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9854 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 > 2.0, c2 <= 13, c4 <= 3.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9861 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 <= 2.0, c1 <= 12, c2 > 4.0, c3 > 3.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9869 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 <= 10.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9871 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 > 10.5, c1 <= 10.5, c2 > 5.5, c3 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9877 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 <= 3.0, c1 <= 8.0, c2 <= 7, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9880 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 <= 3.0, c1 > 8.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9883 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 > 3.0, c1 > 2.0, c3 > 2.5, c2 <= 4.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9885 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 > 3.0, c1 > 2.0, c3 > 2.5, c2 > 4.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9890 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 <= 4.0, c3 <= 5.5, c1 <= 13, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9894 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 > 4.0, c2 <= 3.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9895 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 > 4.0, c2 > 3.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9897 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 > 4.0, c2 > 3.5, c3 > 6.0, c1 <= 8.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9903 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 3, c2 > 2.5, c4 <= 10.0, c1 > 1.5, c3 <= 11.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9904 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 3, c2 > 2.5, c4 <= 10.0, c1 > 1.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9905 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 3, c2 > 2.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9907 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 <= 4.5, c1 <= 6.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9912 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 <= 4.5, c1 > 6.0, c3 > 1.5, c4 <= 7.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9913 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 > 4.5, c5 <= 12.5, c4 <= 5.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9916 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 > 4.5, c5 <= 12.5, c4 > 5.0, c1 <= 12.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9922 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 <= 9.0, c3 <= 5.0, c1 <= 8.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9925 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 <= 9.0, c3 > 5.0, c1 <= 7.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9927 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 > 9.0, c3 > 3.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9937 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 4, c1 <= 13, c3 <= 11.0, c2 > 2.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9938 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 4, c1 <= 13, c3 <= 11.0, c2 > 2.5, c4 > 8.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9939 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 4, c1 <= 13, c3 <= 11.0, c2 > 2.5, c4 > 8.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9943 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 > 1.0, c3 <= 11.0, c2 <= 6.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9956 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 2, c1 > 1.5, c2 <= 12.0, c3 <= 9.5, c4 > 5.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9960 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 2, c1 > 1.5, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9966 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 <= 11.5, c2 <= 10.0, c3 > 1.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9971 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 <= 11.5, c2 > 10.0, c1 > 2.5, c3 > 2.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9972 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 <= 11.5, c2 > 10.0, c1 > 2.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9977 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 4, c1 > 3.0, c3 > 3.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9979 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 4, c1 > 3.0, c3 > 3.0, c2 > 3.0, c4 <= 9.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9984 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 3, c3 <= 8.0, c1 > 2.0, c2 > 9.5, c4 <= 10.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9986 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 3, c3 <= 8.0, c1 > 2.0, c2 > 9.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9992 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 2, c2 > 2.0, c1 > 3.5, c3 > 2.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9994 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 2, c2 > 2.0, c1 > 3.5, c3 <= 2.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9997 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 1, c3 <= 3.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9998 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 1, c3 > 3.0, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10000 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 1, c3 > 3.0, c2 <= 12, c5 <= 10.0, c4 > 1.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10007 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 <= 11.0, c1 <= 12.5, c2 <= 9.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10009 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 <= 11.0, c1 <= 12.5, c2 > 9.5, c3 > 1.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10010 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 <= 11.0, c1 <= 12.5, c2 > 9.5, c3 > 1.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10011 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 <= 11.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10012 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 > 11.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10018 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 3, c2 > 1.0, c1 <= 13, c3 <= 9.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10030 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 > 5.0, c5 <= 10.0, c2 <= 8.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10032 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 > 5.0, c5 > 10.0, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10038 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 1, c4 <= 11.0, c5 > 2.0, c1 > 3.5, c2 <= 11.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10044 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 <= 12.5, c5 <= 10.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10045 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 <= 12.5, c5 <= 10.0, c1 > 4.0, c2 <= 8.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10052 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 > 12.5, c1 <= 10.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10057 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 3, c4 > 1.0, c2 <= 13, c1 <= 3.5, c3 > 2.5, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10058 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 3, c4 > 1.0, c2 <= 13, c1 > 3.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10062 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 3, c4 <= 1.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10065 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 > 11.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10071 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 <= 11.5, c1 <= 13, c3 > 1.5, c2 <= 10.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10072 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 <= 11.5, c1 <= 13, c3 > 1.5, c2 > 10.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10080 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 > 9.0, c3 <= 6.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10084 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 4, c1 > 2.0, c5 > 2.0, c2 <= 5.0, c4 > 2.5, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10089 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 4, c1 > 2.0, c5 > 2.0, c2 > 5.0, c3 > 3.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10102 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 2, c1 > 2.0, c3 <= 12.0, c2 > 1.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10104 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 2, c1 > 2.0, c3 <= 12.0, c2 > 1.0, c4 <= 13, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10105 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 2, c1 > 2.0, c3 <= 12.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10107 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 2, c1 > 2.0, c3 > 12.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10128 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 3, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10144 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 1, c4 > 7.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10145 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 1, c4 > 7.0, c1 <= 11.5, c2 > 1.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10146 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 1, c4 > 7.0, c1 <= 11.5, c2 > 1.5, c3 > 6.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10148 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 1, c4 > 7.0, c1 <= 11.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10156 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 4, c2 > 4.5, c5 <= 13, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10163 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 <= 10.5, c1 <= 11.5, c2 <= 12.0, c4 <= 3.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10164 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 <= 10.5, c1 <= 11.5, c2 <= 12.0, c4 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10167 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 > 10.5, c2 > 7.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10171 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 <= 6.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10174 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 <= 6.5, c1 > 3.0, c2 > 3.0, c3 > 6.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10175 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 <= 6.5, c1 > 3.0, c2 > 3.0, c3 > 6.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10177 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 <= 6.5, c1 > 3.0, c2 > 3.0, c3 <= 6.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10179 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 > 6.5, c3 > 2.5, c4 <= 3.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10181 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 > 6.5, c3 > 2.5, c4 > 3.5, c1 <= 9.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10183 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 > 6.5, c3 > 2.5, c4 > 3.5, c1 > 9.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10186 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 <= 9.5, c2 > 6.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10198 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 > 7.0, c2 > 1.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10199 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 > 7.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10200 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 <= 7.0, c2 > 7.0, c4 > 8.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10206 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 <= 5.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10208 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 <= 5.0, c3 > 3.5, c4 <= 12.5, c5 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10214 poker_hand = 2 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 > 5.0, c3 <= 7.0, c4 <= 10.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10222 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 2, c1 <= 12.5, c5 > 2.0, c4 <= 12.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10227 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 <= 8.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10235 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 > 8.0, c2 > 2.0, c4 <= 10.5, c1 > 9.0, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10239 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 > 8.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10241 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 <= 4.0, c2 > 7.5, c1 <= 5.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10247 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 > 4.0, c1 <= 9.5, c2 > 11.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10249 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 > 4.0, c1 > 9.5, c2 > 4.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10252 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 3, c4 <= 12.0, c1 > 2.0, c5 <= 10.5, c3 > 2.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10259 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 3, c4 > 12.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10260 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 <= 11.0, c3 <= 12.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10262 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 <= 11.0, c3 <= 12.0, c1 > 6.0, c5 > 4.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10263 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 <= 11.0, c3 <= 12.0, c1 > 6.0, c5 > 4.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10272 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 <= 4.5, c1 <= 10.0, c3 <= 7.5, c5 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10279 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 > 4.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10281 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 > 10.0, c1 > 5.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10286 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 4, c5 <= 2.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10291 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 4, c5 > 2.5, c4 > 2.0, c1 > 1.5, c2 > 2.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10296 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 <= 11.0, c3 > 2.0, c5 > 6.0, c1 <= 5.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10298 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 <= 11.0, c3 > 2.0, c5 > 6.0, c1 > 5.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10305 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 2, c1 > 5.0, c2 <= 11.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10308 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 2, c1 > 5.0, c2 <= 11.0, c3 > 2.5, c4 <= 8.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10317 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 > 3.0, c3 > 3.0, c4 <= 6.5, c1 <= 7.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10319 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 > 3.0, c3 > 3.0, c4 > 6.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10321 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 > 3.0, c3 > 3.0, c4 > 6.5, c1 > 7.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10324 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 > 3.0, c4 <= 12.5, c5 > 5.5, c1 <= 9.5, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10325 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 > 3.0, c4 <= 12.5, c5 > 5.5, c1 <= 9.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10326 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 > 3.0, c4 <= 12.5, c5 > 5.5, c1 > 9.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10335 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 <= 12.5, c2 > 3.0, c4 <= 12.0, c3 <= 10.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10337 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 <= 12.5, c2 > 3.0, c4 <= 12.0, c3 > 10.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10339 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 <= 12.5, c2 > 3.0, c4 > 12.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10351 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 > 12.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10357 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 1, c2 > 2.0, c1 > 1.5, c3 > 4.0, c4 > 6.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10362 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 > 7.0, c1 <= 10.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10365 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 > 7.0, c1 <= 10.0, c3 > 3.5, c2 > 6.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10366 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 > 7.0, c1 <= 10.0, c3 > 3.5, c2 > 6.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10368 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 > 7.0, c1 > 10.0, c2 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10375 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 <= 7.0, c3 > 1.0, c1 > 10.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10378 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 > 8.5, c2 > 5.0, c5 > 2.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10381 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 > 8.5, c2 > 5.0, c5 <= 2.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10385 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 <= 8.0, c2 <= 10.0, c5 > 8.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10389 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 > 8.0, c2 > 2.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10394 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 <= 6.0, c1 > 5.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10400 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 > 6.0, c1 <= 11.5, c3 <= 7.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10407 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 > 2.0, c1 > 4.0, c2 <= 5.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10409 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 > 2.0, c1 > 4.0, c2 > 5.5, c4 <= 7.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10415 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 4, c2 > 2.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10427 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 <= 10.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10431 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 > 10.0, c4 > 4.5, c2 > 10.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10435 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 <= 12.0, c1 > 2.0, c5 <= 6.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10436 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 <= 12.0, c1 > 2.0, c5 > 6.5, c2 > 1.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10444 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 1, c2 <= 1.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10448 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 1, c2 > 1.5, c4 <= 6.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10453 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 4, c2 > 3.0, c4 > 4.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10454 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 4, c2 > 3.0, c4 > 4.0, c1 > 6.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10457 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 3, c4 > 3.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10459 poker_hand = 1 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 3, c4 > 3.0, c1 > 3.0, c5 > 8.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10468 poker_hand = 0 classifying 2.0 num of facts with rank:7.996801279488205E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 2, c1 > 5.5, c2 <= 7.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 4, c5 <= 12.5, c3 <= 12.0, c2 <= 11.5, c1 <= 10.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#4 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 4, c5 <= 12.5, c3 > 12.0, c1 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#5 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 4, c5 <= 12.5, c3 > 12.0, c1 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#9 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 3, c4 > 3.0, c1 <= 9.5, c2 <= 12.5, c3 <= 7.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#11 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 3, c4 > 3.0, c1 <= 9.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#12 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 3, c4 > 3.0, c1 > 9.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#14 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 2, c5 <= 1.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#15 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 2, c5 <= 1.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#17 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 2, c5 > 1.5, c2 <= 5.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#18 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 2, c5 > 1.5, c2 <= 5.5, c1 <= 13, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#19 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 2, c5 > 1.5, c2 <= 5.5, c1 <= 13, c3 <= 13, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#23 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 1, c4 > 8.0, c1 <= 6.0, c2 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#24 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 1, c4 > 8.0, c1 <= 6.0, c2 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#25 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 1, c4 > 8.0, c1 > 6.0, c2 <= 11.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#26 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 1, c4 > 8.0, c1 > 6.0, c2 <= 11.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#27 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 4, s3 == 1, c4 > 8.0, c1 > 6.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#28 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 > 8.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#30 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 > 8.5, c2 > 2.5, c1 > 7.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#32 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 <= 8.5, c5 <= 4.5, c1 <= 7, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#33 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 <= 8.5, c5 <= 4.5, c1 <= 7, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#34 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 <= 8.5, c5 <= 4.5, c1 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#36 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 4, c4 <= 8.5, c5 > 4.5, c1 > 8.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#38 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 3, c1 <= 4.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#39 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 3, c1 <= 4.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#41 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 3, c1 > 4.5, c4 <= 8.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#43 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 3, c1 > 4.5, c4 <= 8.5, c2 <= 13, c3 <= 12.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#44 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 3, c1 > 4.5, c4 <= 8.5, c2 <= 13, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#48 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 2, c2 > 1.0, c5 > 1.5, c1 <= 10.0, c3 > 10.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#53 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 > 7.0, c3 <= 8.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#55 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 <= 7.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#58 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 <= 7.0, c5 > 4.0, c2 > 2.0, c3 <= 2.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#59 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 <= 7.0, c5 > 4.0, c2 > 2.0, c3 <= 2.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#61 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 3, s3 == 1, c1 <= 7.0, c5 > 4.0, c2 <= 2.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#62 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 <= 11.0, c4 <= 2.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#63 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 <= 11.0, c4 <= 2.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#66 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 <= 11.0, c4 > 2.5, c2 <= 9.0, c1 <= 8.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#67 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 <= 11.0, c4 > 2.5, c2 > 9.0, c1 <= 11.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#68 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 <= 11.0, c4 > 2.5, c2 > 9.0, c1 <= 11.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#69 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 <= 11.0, c4 > 2.5, c2 > 9.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#71 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 > 11.0, c1 > 6.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#72 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 > 11.0, c1 > 6.0, c2 <= 6.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#73 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 4, c5 > 11.0, c1 > 6.0, c2 <= 6.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#75 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 3, c5 > 2.0, c2 <= 6.0, c1 > 8.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#80 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 3, c5 > 2.0, c2 > 6.0, c1 > 3.5, c3 > 3.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#81 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 3, c5 <= 2.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#82 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 3, c5 <= 2.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#86 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 2, c4 > 3.0, c5 <= 11.5, c1 > 7.5, c2 <= 6.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#87 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 2, c4 > 3.0, c5 <= 11.5, c1 > 7.5, c2 <= 6.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#89 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 2, c4 > 3.0, c5 <= 11.5, c1 > 7.5, c2 > 6.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#94 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 1, c5 > 3.0, c3 <= 12.5, c1 > 2.5, c2 > 12.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#95 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 1, c5 > 3.0, c3 <= 12.5, c1 > 2.5, c2 > 12.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#97 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 2, s3 == 1, c5 > 3.0, c3 > 12.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#99 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 <= 2.5, c2 <= 10.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#100 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 <= 2.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 <= 11.0, c3 > 5.5, c4 <= 3.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#106 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 <= 11.0, c3 <= 5.5, c4 <= 11.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#108 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 > 11.0, c3 <= 11.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#109 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 > 11.0, c3 <= 11.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#110 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 4, c1 > 2.5, c2 > 11.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 <= 4.5, c4 > 4.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#113 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 <= 4.5, c4 > 4.0, c5 > 2.5, c3 > 5.5, c1 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#114 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 <= 4.5, c4 > 4.0, c5 > 2.5, c3 > 5.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#115 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 3, c2 <= 4.5, c4 > 4.0, c5 > 2.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#121 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 <= 5.0, c4 <= 11.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 <= 5.0, c4 <= 11.0, c1 > 3.5, c3 <= 12.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#123 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 <= 5.0, c4 <= 11.0, c1 > 3.5, c3 <= 12.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#124 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 <= 5.0, c4 <= 11.0, c1 > 3.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#125 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 <= 5.0, c4 > 11.0, c1 <= 6.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#126 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 <= 5.0, c4 > 11.0, c1 <= 6.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#127 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 <= 5.0, c4 > 11.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#130 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 > 5.0, c1 > 4.5, c4 <= 9.0, c3 > 8.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#131 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 > 5.0, c1 > 4.5, c4 <= 9.0, c3 <= 8.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#134 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 2, c2 > 5.0, c1 > 4.5, c4 > 9.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#135 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 <= 9.0, c3 <= 4.0, c1 <= 10.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#136 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 <= 9.0, c3 <= 4.0, c1 <= 10.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#137 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 <= 9.0, c3 <= 4.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#138 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 <= 9.0, c3 > 4.0, c1 <= 3.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#139 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 <= 9.0, c3 > 4.0, c1 <= 3.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#140 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 <= 9.0, c3 > 4.0, c1 > 3.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#142 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 > 9.0, c1 <= 12.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#143 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 <= 8.0, c5 > 9.0, c1 <= 12.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#145 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 > 8.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#147 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 > 8.0, c1 > 6.5, c2 <= 12.5, c3 > 2.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 > 8.0, c1 > 6.5, c2 <= 12.5, c3 <= 2.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#150 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 4, s1 == 1, s3 == 1, c4 > 8.0, c1 > 6.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#151 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 <= 7.5, c4 <= 3.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#152 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 <= 7.5, c4 <= 3.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#153 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 <= 7.5, c4 > 3.0, c3 > 8.5, c5 <= 7.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#156 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 <= 7.5, c4 > 3.0, c3 <= 8.5, c1 <= 9.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 <= 7.5, c4 > 3.0, c3 <= 8.5, c1 <= 9.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#158 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 <= 7.5, c4 > 3.0, c3 <= 8.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#159 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 > 7.5, c5 <= 7.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#160 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 > 7.5, c5 <= 7.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#161 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 4, c2 > 7.5, c5 > 7.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#164 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 3, c1 <= 2.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#165 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 3, c1 <= 2.5, c2 <= 8.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#166 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 3, c1 <= 2.5, c2 <= 8.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#167 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 3, c1 > 2.5, c2 <= 7.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 > 7.0, c1 <= 1.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 > 7.0, c1 <= 1.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#175 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 > 7.0, c1 > 1.5, c3 <= 8.5, c2 <= 9.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#176 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 > 7.0, c1 > 1.5, c3 <= 8.5, c2 <= 9.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 > 7.0, c1 > 1.5, c3 <= 8.5, c2 > 9.5, c4 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#178 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 > 7.0, c1 > 1.5, c3 <= 8.5, c2 > 9.5, c4 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#180 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 > 7.0, c1 > 1.5, c3 > 8.5, c4 <= 5.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#181 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 > 7.0, c1 > 1.5, c3 > 8.5, c4 <= 5.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#183 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 <= 7.0, c3 > 3.5, c1 <= 3.5, c2 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 2, c5 <= 7.0, c3 > 3.5, c1 <= 3.5, c2 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#193 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 1, c1 > 3.0, c2 > 1.5, c4 > 10.5, c3 <= 2.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#194 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 1, c1 > 3.0, c2 > 1.5, c4 > 10.5, c3 <= 2.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#195 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 4, s1 == 1, c1 > 3.0, c2 > 1.5, c4 > 10.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#196 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 4, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#197 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 4, c1 > 1.5, c4 > 11.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#199 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 4, c1 > 1.5, c4 > 11.5, c3 > 5.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#202 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 4, c1 > 1.5, c4 <= 11.5, c2 > 2.5, c5 > 4.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#204 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 3, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#206 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 3, c5 <= 13, c2 <= 3.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#207 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 3, c5 <= 13, c2 > 3.5, c1 <= 4.5, c3 <= 10.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#208 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 3, c5 <= 13, c2 > 3.5, c1 <= 4.5, c3 <= 10.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#209 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 3, c5 <= 13, c2 > 3.5, c1 <= 4.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#210 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 3, c5 <= 13, c2 > 3.5, c1 > 4.5, c4 <= 6.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#211 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 3, c5 <= 13, c2 > 3.5, c1 > 4.5, c4 <= 6.5, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#214 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 2, c1 > 1.0, c3 > 2.5, c5 <= 3.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#216 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 2, c1 > 1.0, c3 > 2.5, c5 > 3.0, c2 <= 3.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#220 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 2, c1 <= 1.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#221 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 2, c1 <= 1.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#223 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 1, c1 > 11.5, c5 <= 1.5, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#224 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 1, c1 > 11.5, c5 <= 1.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#227 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 3, s1 == 1, c1 <= 11.5, c5 > 4.0, c2 > 4.5, c3 <= 2.5, c4 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#233 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 > 7.0, c4 > 2.0, c5 > 5.5, c2 > 5.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#235 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 > 7.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#236 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 <= 7.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#237 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 <= 7.0, c4 > 2.5, c3 > 11.5, c2 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#238 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 <= 7.0, c4 > 2.5, c3 > 11.5, c2 <= 11, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#239 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 <= 7.0, c4 > 2.5, c3 > 11.5, c2 <= 11, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#240 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 <= 7.0, c4 > 2.5, c3 <= 11.5, c2 <= 2.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#241 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 <= 7.0, c4 > 2.5, c3 <= 11.5, c2 <= 2.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#242 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 4, c1 <= 7.0, c4 > 2.5, c3 <= 11.5, c2 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#244 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 <= 5.0, c1 <= 11.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#246 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 <= 5.0, c1 <= 11.0, c2 > 1.5, c4 <= 5.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#247 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 <= 5.0, c1 <= 11.0, c2 > 1.5, c4 <= 5.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#248 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 <= 5.0, c1 > 11.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#249 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 <= 5.0, c1 > 11.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 > 5.0, c3 > 1.0, c2 > 1.0, c1 <= 6.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#254 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 > 5.0, c3 > 1.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#255 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 > 5.0, c3 <= 1.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#256 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 3, c5 > 5.0, c3 <= 1.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#258 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 <= 6.0, c1 <= 9.5, c4 <= 3.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#259 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 <= 6.0, c1 <= 9.5, c4 <= 3.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#261 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 > 6.0, c1 <= 8.5, c2 > 2.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#263 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 > 6.0, c1 <= 8.5, c2 <= 2.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#264 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 > 6.0, c1 <= 8.5, c2 <= 2.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#265 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 > 6.0, c1 > 8.5, c5 <= 9.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#266 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 2, c3 > 6.0, c1 > 8.5, c5 <= 9.5, c2 <= 9.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#269 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 1, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 1, c1 <= 13, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#271 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 2, s1 == 1, c1 <= 13, c2 <= 13, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 4, c1 <= 11.0, c4 <= 12.0, c5 > 2.0, c2 <= 10.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#277 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 4, c1 <= 11.0, c4 <= 12.0, c5 > 2.0, c2 > 10.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#278 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 4, c1 <= 11.0, c4 <= 12.0, c5 > 2.0, c2 > 10.5, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#280 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 4, c1 <= 11.0, c4 > 12.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#282 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 4, c1 > 11.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#283 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 4, c1 > 11.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#284 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 3, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#286 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 3, c3 <= 12, c1 > 2.0, c4 <= 11.0, c5 > 5.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#289 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 3, c3 <= 12, c1 > 2.0, c4 > 11.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#291 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#295 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 <= 12.0, c3 > 1.0, c4 > 11.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#296 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 <= 12.0, c3 <= 1.0, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#298 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 > 12.0, c4 <= 8.0, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 > 12.0, c4 <= 8.0, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#300 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 > 12.0, c4 > 8.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#301 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 2, c1 <= 13, c2 > 12.0, c4 > 8.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#304 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 <= 12.5, c2 > 2.0, c4 > 2.0, c3 > 7.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#308 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 <= 12.5, c2 > 2.0, c4 <= 2.0, c3 > 8.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 > 12.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#311 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 3, s3 == 1, s1 == 1, c1 > 12.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 4, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 4, c2 > 3.5, c1 <= 11.0, c5 <= 12.0, c3 <= 4.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#314 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 4, c2 > 3.5, c1 <= 11.0, c5 <= 12.0, c3 <= 4.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 4, c2 > 3.5, c1 <= 11.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 4, c2 > 3.5, c1 > 11.0, c3 <= 10.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#319 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 4, c2 > 3.5, c1 > 11.0, c3 <= 10.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#320 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 4, c2 > 3.5, c1 > 11.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#321 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 3, c2 > 1.0, c1 <= 3.0, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#325 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 3, c2 > 1.0, c1 > 3.0, c3 > 2.0, c4 > 12.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#326 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 3, c2 > 1.0, c1 > 3.0, c3 > 2.0, c4 > 12.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 3, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#329 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 2, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#333 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 2, c1 > 2.5, c5 > 3.0, c2 > 2.5, c4 <= 6.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#336 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 > 5.5, c2 <= 4.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#339 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 > 5.5, c2 > 4.5, c1 > 4.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#340 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 <= 5.5, c1 > 4.0, c3 > 7.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#341 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 <= 5.5, c1 > 4.0, c3 > 7.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#342 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 <= 5.5, c1 > 4.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#343 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 <= 5.5, c1 <= 4.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#344 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 > 5.5, c4 <= 5.5, c1 <= 4.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#345 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 <= 5.5, c4 > 2.0, c1 <= 9.0, c2 <= 10.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#346 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 <= 5.5, c4 > 2.0, c1 <= 9.0, c2 <= 10.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#349 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 4, s1 == 1, c5 <= 5.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#350 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 4, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#351 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 4, c3 <= 13, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#353 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 4, c3 <= 13, c5 <= 13, c2 > 1.0, c1 <= 3.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#354 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 4, c3 <= 13, c5 <= 13, c2 > 1.0, c1 > 3.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#357 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 3, c2 > 1.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#358 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 3, c2 > 1.0, c3 > 1.5, c1 <= 12.0, c4 <= 2.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#359 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 3, c2 > 1.0, c3 > 1.5, c1 <= 12.0, c4 <= 2.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#360 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 3, c2 > 1.0, c3 > 1.5, c1 <= 12.0, c4 > 2.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#362 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 3, c2 > 1.0, c3 > 1.5, c1 > 12.0, c4 <= 10.5, c5 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#363 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 3, c2 > 1.0, c3 > 1.5, c1 > 12.0, c4 <= 10.5, c5 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#365 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 3, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#367 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 <= 3.0, c1 > 8.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#368 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 <= 3.0, c1 <= 8.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#370 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 > 3.0, c3 <= 2.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#371 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 > 3.0, c3 <= 2.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#375 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 > 3.0, c3 > 2.5, c1 <= 2.0, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#376 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 2, c4 > 3.0, c3 > 2.5, c1 <= 2.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#377 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 1, c1 > 1.0, c3 <= 1.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#378 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 1, c1 > 1.0, c3 <= 1.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#381 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 1, c1 > 1.0, c3 > 1.5, c4 <= 10.0, c5 > 7.5, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#383 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 1, c1 > 1.0, c3 > 1.5, c4 > 10.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 3, s1 == 1, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#388 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 4, c4 > 1.5, c1 > 1.0, c2 > 2.0, c3 <= 2.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#392 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 4, c4 > 1.5, c1 <= 1.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#393 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 4, c4 > 1.5, c1 <= 1.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#398 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 3, c3 <= 12, c4 > 1.0, c1 > 2.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#400 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 3, c3 <= 12, c4 <= 1.0, c1 <= 4.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#401 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 3, c3 <= 12, c4 <= 1.0, c1 <= 4.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#402 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 3, c3 <= 12, c4 <= 1.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#404 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 <= 9.0, c3 <= 4.0, c1 <= 8.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#405 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 <= 9.0, c3 <= 4.0, c1 <= 8.5, c2 <= 7.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#406 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 <= 9.0, c3 <= 4.0, c1 <= 8.5, c2 <= 7.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#408 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 <= 9.0, c3 > 4.0, c4 > 1.0, c2 <= 11.5, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#409 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 <= 9.0, c3 > 4.0, c4 > 1.0, c2 <= 11.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#410 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 <= 9.0, c3 > 4.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#412 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 2, c5 > 9.0, c2 > 4.0, c4 <= 8.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#415 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 <= 5.5, c1 > 2.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 <= 5.5, c1 > 2.0, c4 > 3.0, c2 <= 4.0, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#417 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 <= 5.5, c1 > 2.0, c4 > 3.0, c2 <= 4.0, c5 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 <= 5.5, c1 > 2.0, c4 > 3.0, c2 > 4.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#420 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 <= 5.5, c1 <= 2.0, c2 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 <= 5.5, c1 <= 2.0, c2 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#422 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 > 5.5, c5 <= 8.0, c4 > 1.5, c1 > 7.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#423 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 > 5.5, c5 <= 8.0, c4 > 1.5, c1 > 7.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#425 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 > 5.5, c5 <= 8.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#426 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 > 5.5, c5 > 8.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#428 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 2, s1 == 1, c3 > 5.5, c5 > 8.0, c2 > 6.0, c4 <= 11.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#430 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 4, c4 > 1.0, c3 > 2.0, c1 <= 3.0, c2 > 7.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 4, c4 > 1.0, c3 > 2.0, c1 <= 3.0, c2 > 7.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 4, c4 > 1.0, c3 > 2.0, c1 <= 3.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 4, c4 > 1.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#438 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 4, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#439 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 3, c3 > 1.0, c4 > 2.0, c1 <= 3.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#440 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 3, c3 > 1.0, c4 > 2.0, c1 <= 3.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#442 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 3, c3 > 1.0, c4 > 2.0, c1 > 3.5, c2 > 1.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#445 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 3, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 <= 12.5, c4 > 12, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#449 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 <= 12.5, c4 <= 12, c2 <= 2.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 <= 12.5, c4 <= 12, c2 > 2.5, c3 <= 2.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#453 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 <= 12.5, c4 <= 12, c2 > 2.5, c3 <= 2.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#454 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 > 12.5, c2 <= 10.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#455 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 > 12.5, c2 <= 10.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#456 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 2, c1 > 12.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#460 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 <= 12.0, c2 > 3.0, c1 > 13, c3 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 <= 12.0, c2 > 3.0, c1 > 13, c3 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#462 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 <= 12.0, c2 > 3.0, c1 <= 13, c3 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#464 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 <= 12.0, c2 > 3.0, c1 <= 13, c3 <= 2.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#465 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 <= 12.0, c2 > 3.0, c1 <= 13, c3 <= 2.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#467 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 2, s3 == 1, s1 == 1, c4 > 12.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 4, c5 > 3.5, c2 <= 1.5, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#470 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 4, c5 > 3.5, c2 <= 1.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#471 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 4, c5 > 3.5, c2 > 1.5, c1 > 11.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#479 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 3, c1 <= 12.0, c2 > 3.5, c5 <= 11.5, c3 <= 12.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#480 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 3, c1 <= 12.0, c2 > 3.5, c5 <= 11.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 3, c1 > 12.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#482 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 3, c1 > 12.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#483 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 > 11.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#484 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 > 11.5, c1 <= 6.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#486 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 <= 11.5, c4 > 11, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#487 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 <= 11.5, c4 > 11, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#488 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 <= 11.5, c4 <= 11, c5 <= 6.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#489 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 4, s3 == 2, c2 <= 11.5, c4 <= 11, c5 <= 6.0, c1 > 1.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#500 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 <= 11.0, c1 <= 4.5, c5 <= 4.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#502 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 <= 11.0, c1 <= 4.5, c5 <= 4.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#504 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 <= 11.0, c1 > 4.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#506 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 > 11.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#508 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 > 11.0, c5 > 3.0, c1 > 7.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#510 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 4, c3 <= 11.5, c2 > 11.0, c5 > 3.0, c1 <= 7.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#511 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 3, c1 <= 12.5, c5 <= 2.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#512 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 3, c1 <= 12.5, c5 <= 2.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#514 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 3, c1 <= 12.5, c5 > 2.5, c4 > 1.0, c2 <= 3.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#516 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 3, c1 <= 12.5, c5 > 2.5, c4 > 1.0, c2 > 3.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#517 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 3, c1 <= 12.5, c5 > 2.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#518 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 3, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#519 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 2, c4 > 1.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#520 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 2, c4 > 1.0, c5 <= 13, c3 <= 12.0, c1 <= 3.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#521 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 2, c4 > 1.0, c5 <= 13, c3 <= 12.0, c1 <= 3.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#522 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 2, c4 > 1.0, c5 <= 13, c3 <= 12.0, c1 > 3.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#525 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 2, c4 > 1.0, c5 <= 13, c3 > 12.0, c1 <= 10.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#526 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 2, c4 > 1.0, c5 <= 13, c3 > 12.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#527 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 2, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#530 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 <= 6.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#531 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 > 6.5, c1 > 2.0, c2 <= 8.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#532 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 > 6.5, c1 > 2.0, c2 <= 8.5, c3 <= 7.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#533 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 > 6.5, c1 > 2.0, c2 <= 8.5, c3 <= 7.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#535 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 > 6.5, c1 > 2.0, c2 > 8.5, c3 <= 10.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#537 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 > 6.5, c1 <= 2.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#538 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 3, s3 == 1, c5 > 6.5, c1 <= 2.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#542 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 <= 12.0, c4 > 1.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#545 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 > 12.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#547 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 <= 8.0, c1 <= 10.5, c5 <= 8.0, c2 > 3.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#550 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 <= 8.0, c1 <= 10.5, c5 > 8.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#552 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 <= 8.0, c1 > 10.5, c2 > 8.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#554 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 > 8.0, c1 <= 8.0, c2 <= 1.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#555 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 > 8.0, c1 <= 8.0, c2 <= 1.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#556 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 > 8.0, c1 <= 8.0, c2 > 1.5, c4 <= 3.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 > 8.0, c1 <= 8.0, c2 > 1.5, c4 <= 3.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#558 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 > 8.0, c1 <= 8.0, c2 > 1.5, c4 > 3.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#560 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 > 8.0, c1 > 8.0, c4 <= 8.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#561 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 3, c3 > 8.0, c1 > 8.0, c4 <= 8.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#563 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 <= 9.5, c4 <= 11.0, c2 <= 12.5, c3 <= 3.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#567 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 <= 9.5, c4 <= 11.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#569 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 <= 9.5, c4 > 11.0, c2 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#570 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 > 9.5, c2 > 1.0, c3 > 4.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#571 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 > 9.5, c2 > 1.0, c3 > 4.5, c4 <= 5.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#572 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 > 9.5, c2 > 1.0, c3 > 4.5, c4 <= 5.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#574 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 > 9.5, c2 > 1.0, c3 <= 4.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#575 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 2, c1 > 9.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 > 8.5, c1 > 4.0, c2 > 3.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#577 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 > 8.5, c1 > 4.0, c2 > 3.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#578 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 > 8.5, c1 > 4.0, c2 <= 3.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#579 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 > 8.5, c1 > 4.0, c2 <= 3.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#581 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 <= 8.5, c4 > 7.0, c1 > 1.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#583 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 <= 8.5, c4 > 7.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#584 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 <= 8.5, c4 <= 7.0, c2 > 3.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#586 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 <= 12.5, c5 <= 8.5, c4 <= 7.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#587 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 2, s3 == 1, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#589 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 <= 4.0, c1 > 5.5, c3 > 5.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#591 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 <= 4.0, c1 > 5.5, c3 > 5.5, c4 > 3.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#592 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 <= 4.0, c1 > 5.5, c3 <= 5.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#593 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 <= 4.0, c1 > 5.5, c3 <= 5.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#597 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 > 4.0, c5 > 5.5, c1 > 9.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#598 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 > 4.0, c5 > 5.5, c1 > 9.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 > 4.0, c5 <= 5.5, c4 <= 6.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#600 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 4, c2 > 4.0, c5 <= 5.5, c4 <= 6.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#602 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 > 13, c1 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#603 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 > 13, c1 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#606 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 <= 6.5, c1 > 1.5, c4 <= 11.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#607 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 <= 6.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#608 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 > 6.5, c1 <= 4.0, c4 <= 12.5, c5 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#609 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 > 6.5, c1 <= 4.0, c4 <= 12.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#610 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 > 6.5, c1 <= 4.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 > 6.5, c1 > 4.0, c4 <= 6.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#613 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 3, c2 <= 13, c3 > 6.5, c1 > 4.0, c4 > 6.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#616 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 2, c5 <= 11.5, c4 > 1.0, c2 <= 6.5, c1 <= 8.0, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 2, c5 <= 11.5, c4 > 1.0, c2 <= 6.5, c1 > 8.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#622 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 2, c5 <= 11.5, c4 > 1.0, c2 > 6.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#623 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 2, c5 <= 11.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#624 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 1, c2 > 11.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#627 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 1, c2 <= 11.5, c1 > 1.0, c3 <= 4.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#631 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 4, s2 == 1, s1 == 1, s3 == 1, c2 <= 11.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#632 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 10.5, c1 <= 6.5, c4 <= 6.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 10.5, c1 <= 6.5, c4 <= 6.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#635 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 10.5, c1 <= 6.5, c4 > 6.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#638 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 10.5, c1 > 6.5, c5 > 7.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#639 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 10.5, c1 > 6.5, c5 > 7.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#641 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 > 1.0, c3 > 10.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#643 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 4, c2 <= 1.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#644 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 3, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#645 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 3, c5 <= 13, c3 <= 10.0, c2 > 8.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#647 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 3, c5 <= 13, c3 <= 10.0, c2 > 8.5, c4 > 2.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#648 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 3, c5 <= 13, c3 <= 10.0, c2 <= 8.5, c4 <= 4.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 3, c5 <= 13, c3 > 10.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#655 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 > 1.0, c1 > 1.0, c2 <= 12.5, c3 <= 2.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#656 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 > 1.0, c1 > 1.0, c2 <= 12.5, c3 <= 2.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#657 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 > 1.0, c1 > 1.0, c2 > 12.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#658 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 > 1.0, c1 > 1.0, c2 > 12.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#659 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 > 1.0, c1 <= 1.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#660 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 > 1.0, c1 <= 1.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#661 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 2, c5 <= 1.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#663 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 <= 1.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#664 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 <= 1.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#665 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 > 1.5, c5 <= 6.5, c2 > 2.0, c3 <= 4.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#666 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 > 1.5, c5 <= 6.5, c2 > 2.0, c3 <= 4.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 > 1.5, c5 <= 6.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#669 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 > 1.5, c5 > 6.5, c4 <= 8.5, c3 > 1.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#671 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 > 1.5, c5 > 6.5, c4 <= 8.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#673 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 4, s2 == 1, c1 > 1.5, c5 > 6.5, c4 > 8.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#674 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 <= 3.0, c2 <= 12.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#675 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 <= 3.0, c2 <= 12.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#676 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 <= 3.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#678 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 > 3.0, c4 <= 4.0, c3 <= 1.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 > 3.0, c4 <= 4.0, c3 <= 1.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#680 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 > 3.0, c4 > 4.0, c2 <= 7.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#684 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 4, c1 > 3.0, c4 > 4.0, c2 > 7.5, c3 <= 9.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#687 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 3, c3 <= 3.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#691 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 3, c3 > 3.5, c2 <= 12.5, c5 <= 10.0, c4 > 10.5, c1 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#692 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 3, c3 > 3.5, c2 <= 12.5, c5 > 10.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#694 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 3, c3 > 3.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#696 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 > 11.5, c4 <= 5.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#697 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 > 11.5, c4 <= 5.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#698 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 <= 11.5, c4 <= 2.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#700 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 <= 11.5, c4 > 2.5, c5 > 2.0, c2 <= 4.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 <= 11.5, c4 > 2.5, c5 > 2.0, c2 <= 4.5, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#703 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 2, c1 <= 11.5, c4 > 2.5, c5 > 2.0, c2 > 4.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#705 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 1, c3 <= 6.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#707 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 1, c3 > 6.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#709 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 1, c3 > 6.0, c1 <= 13, c2 > 2.0, c5 <= 12.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#710 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 1, c3 > 6.0, c1 <= 13, c2 > 2.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#711 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 1, c3 > 6.0, c1 <= 13, c2 <= 2.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#712 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 3, s2 == 1, c3 > 6.0, c1 <= 13, c2 <= 2.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#717 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 4, c4 > 1.0, c3 > 2.0, c5 > 12.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#719 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 4, c4 <= 1.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#721 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 3, c2 <= 3.5, c1 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#722 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 3, c2 <= 3.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#724 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 3, c2 > 3.5, c4 > 3.0, c5 <= 3.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#725 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 3, c2 > 3.5, c4 > 3.0, c5 <= 3.5, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#731 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 > 8.5, c1 <= 11.0, c2 > 9.0, c5 <= 5.5, c3 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#732 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 > 8.5, c1 <= 11.0, c2 > 9.0, c5 <= 5.5, c3 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#734 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 > 8.5, c1 > 11.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#735 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 > 8.5, c1 > 11.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#738 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 <= 8.5, c1 <= 9.0, c2 > 3.0, c3 <= 3.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#739 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 <= 8.5, c1 <= 9.0, c2 > 3.0, c3 > 3.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#740 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 <= 8.5, c1 <= 9.0, c2 > 3.0, c3 > 3.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#741 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 <= 8.5, c1 > 9.0, c2 <= 10.0, c5 <= 7.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#742 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 2, c4 <= 8.5, c1 > 9.0, c2 <= 10.0, c5 <= 7.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#746 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 <= 3.0, c4 <= 9.0, c3 <= 7.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#747 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 <= 3.0, c4 <= 9.0, c3 <= 7.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#750 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 > 3.0, c4 > 11.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#753 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 > 3.0, c4 <= 11.5, c3 <= 11.5, c2 <= 4.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#755 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 2, s2 == 1, c5 > 3.0, c4 <= 11.5, c3 <= 11.5, c2 > 4.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#756 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 > 8.5, c1 <= 2.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 > 8.5, c1 <= 2.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#759 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 > 8.5, c1 > 2.5, c5 <= 4.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#760 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 > 8.5, c1 > 2.5, c5 > 4.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#762 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 > 8.5, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#763 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 <= 8.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#765 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 <= 8.5, c3 > 1.5, c2 > 1.5, c1 <= 10.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#768 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 4, c4 <= 8.5, c3 > 1.5, c2 > 1.5, c1 > 10.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#769 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 3, c5 > 2.0, c1 <= 12.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#770 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 3, c5 > 2.0, c1 <= 12.5, c2 <= 13, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#771 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 3, c5 > 2.0, c1 <= 12.5, c2 <= 13, c3 <= 13, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#773 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 3, c5 > 2.0, c1 > 12.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#777 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 <= 4.0, c3 > 7.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#779 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 > 4.0, c4 <= 5.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#781 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 > 4.0, c4 <= 5.0, c3 <= 11.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 > 4.0, c4 > 5.0, c3 <= 10.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#784 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 <= 12.0, c2 > 4.0, c4 > 5.0, c3 > 10.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#786 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 > 12.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#787 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 2, c1 > 12.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#789 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 1, c1 > 2.5, c5 > 1.0, c2 <= 12.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 1, c1 > 2.5, c5 > 1.0, c2 <= 12.0, c3 <= 13, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#792 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 1, c1 > 2.5, c5 > 1.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#793 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 4, s3 == 1, s2 == 1, c1 > 2.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 4, c1 > 1.0, c2 > 1.5, c4 <= 12.0, c3 <= 4.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#799 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 4, c1 > 1.0, c2 > 1.5, c4 > 12.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#800 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 4, c1 > 1.0, c2 > 1.5, c4 > 12.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#801 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 4, c1 <= 1.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#802 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 4, c1 <= 1.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 <= 9.0, c1 > 2.0, c3 <= 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#804 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 <= 9.0, c1 > 2.0, c3 <= 2.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#805 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 <= 9.0, c1 > 2.0, c3 > 2.5, c4 <= 12.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#808 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 <= 9.0, c1 <= 2.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#809 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 <= 9.0, c1 <= 2.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#810 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 > 9.0, c1 > 3.5, c3 > 7.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 > 9.0, c1 > 3.5, c3 > 7.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#812 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 > 9.0, c1 > 3.5, c3 <= 7.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 > 9.0, c1 > 3.5, c3 <= 7.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#814 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 3, c2 > 9.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#815 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 2, c1 <= 12.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#816 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 2, c1 <= 12.0, c3 <= 11.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#819 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 2, c1 <= 12.0, c3 <= 11.5, c2 > 3.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#821 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 <= 3.0, c1 > 6.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#824 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 > 3.0, c1 <= 4.5, c3 <= 7.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 > 3.0, c1 <= 4.5, c3 <= 7.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#829 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 > 3.0, c1 > 4.5, c3 <= 10.0, c4 > 9.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#830 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 > 3.0, c1 > 4.5, c3 > 10.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#831 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 4, s3 == 1, c2 > 3.0, c1 > 4.5, c3 > 10.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#833 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 <= 11.0, c4 > 1.5, c3 <= 5.0, c1 > 1.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#835 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 <= 11.0, c4 > 1.5, c3 <= 5.0, c1 <= 1.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#836 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 <= 11.0, c4 > 1.5, c3 <= 5.0, c1 <= 1.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#837 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 <= 11.0, c4 > 1.5, c3 > 5.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#838 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 <= 11.0, c4 > 1.5, c3 > 5.0, c1 <= 12, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 > 11.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#841 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 > 11.0, c1 <= 6.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#842 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 > 11.0, c1 <= 6.0, c3 <= 7.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#843 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 4, c2 > 11.0, c1 <= 6.0, c3 <= 7.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 > 11.5, c1 > 5.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#848 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 <= 11.5, c3 > 2.0, c1 <= 6.5, c4 > 6.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#849 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 <= 11.5, c3 > 2.0, c1 <= 6.5, c4 > 6.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#851 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 <= 11.5, c3 > 2.0, c1 > 6.5, c4 <= 10, c5 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#852 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 <= 11.5, c3 > 2.0, c1 > 6.5, c4 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 <= 11.5, c3 <= 2.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#854 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 3, c2 <= 11.5, c3 <= 2.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#855 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 2, c3 <= 2.5, c1 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#856 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 2, c3 <= 2.5, c1 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#857 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 2, c3 > 2.5, c5 <= 12.5, c4 <= 3.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#858 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 2, c3 > 2.5, c5 <= 12.5, c4 <= 3.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 2, c3 > 2.5, c5 <= 12.5, c4 > 3.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#860 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 2, c3 > 2.5, c5 <= 12.5, c4 > 3.0, c2 > 1.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#863 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 2, c3 > 2.5, c5 > 12.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#865 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 1, c1 <= 6.5, c3 <= 6.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#867 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 3, s3 == 1, c1 > 6.5, c5 <= 9.0, c4 <= 12.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#872 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 4, c2 <= 12.5, c4 > 1.0, c5 > 1.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 4, c2 <= 12.5, c4 > 1.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#876 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 4, c2 <= 12.5, c4 <= 1.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#877 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 4, c2 <= 12.5, c4 <= 1.0, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#879 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 3, c5 <= 12.0, c1 > 7.0, c2 <= 10.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#880 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 3, c5 <= 12.0, c1 > 7.0, c2 <= 10.0, c3 <= 11.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#882 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 3, c5 <= 12.0, c1 > 7.0, c2 > 10.0, c3 <= 12.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#883 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 3, c5 <= 12.0, c1 > 7.0, c2 > 10.0, c3 <= 12.5, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#886 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 3, c5 > 12.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#888 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 <= 6.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#889 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 <= 6.0, c1 > 5.0, c5 <= 4.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#890 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 <= 6.0, c1 > 5.0, c5 <= 4.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#891 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 <= 6.0, c1 > 5.0, c5 > 4.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#893 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 <= 6.0, c1 > 5.0, c5 > 4.0, c3 > 3.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#896 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 <= 10.0, c1 > 1.0, c3 > 9.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#897 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 <= 10.0, c1 <= 1.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#898 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 <= 10.0, c1 <= 1.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#899 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 > 10.0, c5 <= 8.5, c1 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#900 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 > 10.0, c5 <= 8.5, c1 <= 9, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#901 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 > 10.0, c5 <= 8.5, c1 <= 9, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#902 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 > 10.0, c5 > 8.5, c1 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#903 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 2, c2 > 6.0, c4 > 10.0, c5 > 8.5, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#905 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 > 5.5, c3 > 1.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#906 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 > 5.5, c3 > 1.5, c4 <= 8.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#908 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 <= 5.5, c1 > 8.5, c3 > 3.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#910 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 <= 5.5, c1 > 8.5, c3 <= 3.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#911 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 <= 10.0, c5 <= 5.5, c1 > 8.5, c3 <= 3.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 > 10.0, c5 <= 5.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 2, s3 == 1, c2 > 10.0, c5 <= 5.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#917 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 4, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 4, c5 <= 13, c2 <= 11.5, c1 <= 13, c3 > 2.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#922 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 4, c5 <= 13, c2 <= 11.5, c1 <= 13, c3 <= 2.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#923 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 4, c5 <= 13, c2 <= 11.5, c1 <= 13, c3 <= 2.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#924 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 > 1.0, c1 <= 1.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#925 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 > 1.0, c1 <= 1.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#927 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 > 1.0, c1 > 1.5, c3 <= 10.5, c4 <= 6.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#929 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 > 1.0, c1 > 1.5, c3 <= 10.5, c4 > 6.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#930 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 > 1.0, c1 > 1.5, c3 > 10.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#931 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 > 1.0, c1 > 1.5, c3 > 10.5, c4 <= 8.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#932 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 > 1.0, c1 > 1.5, c3 > 10.5, c4 <= 8.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#933 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 3, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#934 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 <= 10.5, c3 <= 9.0, c5 > 2.0, c4 <= 9.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 <= 10.5, c3 <= 9.0, c5 > 2.0, c4 > 9.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#938 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 <= 10.5, c3 <= 9.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#940 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 <= 10.5, c3 > 9.0, c4 > 6.0, c2 <= 5.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#941 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 <= 10.5, c3 > 9.0, c4 > 6.0, c2 <= 5.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#942 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 <= 10.5, c3 > 9.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#943 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 > 10.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 > 10.5, c5 > 4.0, c2 > 7.0, c3 <= 11.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#945 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 > 10.5, c5 > 4.0, c2 > 7.0, c3 <= 11.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#946 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 > 10.5, c5 > 4.0, c2 > 7.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#947 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 2, c1 > 10.5, c5 > 4.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#948 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 12.5, c2 > 11.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#949 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 12.5, c2 > 11.5, c1 > 9.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#950 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 12.5, c2 > 11.5, c1 > 9.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#955 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 1, c3 > 1.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#956 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 3, s2 == 1, s3 == 1, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#957 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 <= 5.0, c1 <= 11.0, c3 <= 1.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#958 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 <= 5.0, c1 <= 11.0, c3 <= 1.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#961 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 <= 5.0, c1 <= 11.0, c3 > 1.5, c4 > 7.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#962 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 <= 5.0, c1 > 11.0, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#963 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 <= 5.0, c1 > 11.0, c3 <= 11, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#964 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 <= 5.0, c1 > 11.0, c3 <= 11, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 > 5.0, c1 > 2.0, c3 > 1.0, c5 > 10.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#969 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 > 5.0, c1 > 2.0, c3 <= 1.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#970 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 > 5.0, c1 > 2.0, c3 <= 1.0, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#971 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 > 5.0, c1 <= 2.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#972 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 4, c2 > 5.0, c1 <= 2.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#973 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 <= 9.5, c2 > 1.0, c1 <= 10.0, c4 <= 10.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#975 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 <= 9.5, c2 > 1.0, c1 <= 10.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#976 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 <= 9.5, c2 > 1.0, c1 > 10.0, c5 <= 3.0, c4 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#977 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 <= 9.5, c2 > 1.0, c1 > 10.0, c5 <= 3.0, c4 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#980 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 <= 9.5, c2 <= 1.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#981 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 <= 9.5, c2 <= 1.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#984 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 > 9.5, c5 > 5.0, c1 > 6.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#985 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 3, c3 > 9.5, c5 <= 5.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#987 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 <= 10.0, c1 <= 10.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#989 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 <= 10.0, c1 <= 10.0, c4 > 1.5, c2 > 1.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#991 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 <= 10.0, c1 > 10.0, c2 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#993 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 <= 10.0, c1 > 10.0, c2 <= 3, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#994 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 > 10.0, c1 <= 6.0, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#995 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 2, c5 > 10.0, c1 <= 6.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#997 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 1, c1 > 1.0, c2 > 1.0, c4 > 1.0, c3 <= 1.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#998 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 1, c1 > 1.0, c2 > 1.0, c4 > 1.0, c3 <= 1.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1003 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 1, c1 <= 1.0, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1004 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 4, s3 == 1, c1 <= 1.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1005 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 <= 7.5, c5 <= 10.0, c3 <= 4.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1006 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 <= 7.5, c5 <= 10.0, c3 <= 4.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1007 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 <= 7.5, c5 <= 10.0, c3 > 4.0, c1 <= 4.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1008 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 <= 7.5, c5 <= 10.0, c3 > 4.0, c1 <= 4.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1009 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 <= 7.5, c5 <= 10.0, c3 > 4.0, c1 > 4.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 <= 7.5, c5 > 10.0, c3 > 6.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1013 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 <= 7.5, c5 > 10.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1014 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 > 7.5, c1 <= 12.0, c3 <= 10.5, c4 <= 7.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1016 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 > 7.5, c1 <= 12.0, c3 <= 10.5, c4 > 7.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1017 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 > 7.5, c1 <= 12.0, c3 <= 10.5, c4 > 7.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1018 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 > 7.5, c1 <= 12.0, c3 > 10.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 > 7.5, c1 > 12.0, c3 <= 10.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1021 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 > 7.5, c1 > 12.0, c3 <= 10.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 4, c2 > 7.5, c1 > 12.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1025 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 3, c3 <= 5.5, c4 <= 9.0, c1 <= 10.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1027 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 3, c3 <= 5.5, c4 <= 9.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1028 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 <= 8.0, c2 <= 5.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1029 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 <= 8.0, c2 <= 5.0, c1 > 5.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1031 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 <= 8.0, c2 > 5.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1034 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 <= 8.0, c2 > 5.0, c3 <= 8.5, c1 > 2.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1035 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 > 8.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1037 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 > 8.0, c2 <= 13, c3 > 5.5, c5 <= 8.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1038 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 2, c4 > 8.0, c2 <= 13, c3 > 5.5, c5 <= 8.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1043 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 <= 6.0, c2 > 5.0, c4 <= 8.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1048 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 > 6.0, c2 > 1.0, c3 > 11.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1049 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 > 6.0, c2 <= 1.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1050 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 3, s3 == 1, c5 <= 13, c1 > 6.0, c2 <= 1.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1051 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 <= 4.5, c2 <= 10.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1053 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 <= 4.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1055 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 > 4.5, c5 <= 10.0, c2 <= 3.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 > 1.0, c4 > 4.5, c5 > 10.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1061 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 <= 1.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1062 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 4, c1 <= 1.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1063 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1065 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 <= 3.0, c1 <= 10.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1066 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 <= 3.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1068 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 > 3.0, c4 > 2.0, c2 > 7.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1069 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 > 3.0, c4 > 2.0, c2 <= 7.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1070 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 > 3.0, c4 > 2.0, c2 <= 7.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1071 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 > 3.0, c4 <= 2.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1072 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 > 3.0, c4 <= 2.0, c1 > 4.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1073 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 3, c3 > 1.5, c5 > 3.0, c4 <= 2.0, c1 > 4.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1074 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 2, c1 <= 2.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1075 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 2, c1 <= 2.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1076 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 2, c1 > 2.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1077 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 2, c1 > 2.5, c3 <= 13, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1079 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 2, c1 > 2.5, c3 <= 13, c2 > 3.5, c4 > 3.0, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1081 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 <= 4.0, c3 <= 5.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1082 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 <= 4.0, c3 <= 5.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1083 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 <= 4.0, c3 > 5.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1085 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 > 4.0, c1 <= 1.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1086 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 > 4.0, c1 <= 1.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 > 4.0, c1 > 1.5, c4 > 3.0, c3 <= 2.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1089 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 2, s3 == 1, c2 > 4.0, c1 > 1.5, c4 > 3.0, c3 <= 2.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1092 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 > 13, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1094 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 <= 13, c2 > 11.5, c4 <= 7.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1095 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 <= 13, c2 > 11.5, c4 <= 7.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1097 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 <= 13, c2 <= 11.5, c3 > 1.0, c4 <= 1.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1098 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 <= 13, c2 <= 11.5, c3 > 1.0, c4 <= 1.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1101 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 <= 13, c2 <= 11.5, c3 <= 1.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1102 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 4, c1 <= 13, c2 <= 11.5, c3 <= 1.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1103 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 <= 11.0, c1 <= 1.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1104 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 <= 11.0, c1 <= 1.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1105 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 <= 11.0, c1 > 1.5, c5 > 11.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1107 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 <= 11.0, c1 > 1.5, c5 > 11.5, c3 > 3.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1110 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 <= 11.0, c1 > 1.5, c5 <= 11.5, c3 > 10.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1112 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 > 11.0, c1 > 7.0, c3 <= 10.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1113 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 > 11.0, c1 > 7.0, c3 <= 10.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1114 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 > 11.0, c1 > 7.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1115 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 > 11.0, c1 <= 7.0, c3 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1116 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 3, c2 > 11.0, c1 <= 7.0, c3 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1118 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 <= 12.5, c2 > 1.5, c5 <= 2.0, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1119 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 <= 12.5, c2 > 1.5, c5 <= 2.0, c3 <= 11, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1120 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 <= 12.5, c2 > 1.5, c5 <= 2.0, c3 <= 11, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 <= 12.5, c2 > 1.5, c5 > 2.0, c3 <= 12.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1124 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 > 12.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1125 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 > 12.5, c2 > 4.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1126 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 2, c1 > 12.5, c2 > 4.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1127 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 1, c2 <= 3.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 1, c2 > 3.5, c1 > 2.0, c3 <= 2.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1133 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 1, c2 > 3.5, c1 > 2.0, c3 <= 2.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1134 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 1, c2 > 3.5, c1 <= 2.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1135 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 2, s2 == 1, s3 == 1, c2 > 3.5, c1 <= 2.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1136 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 <= 10.0, c5 > 1.0, c1 <= 1.5, c2 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1137 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 <= 10.0, c5 > 1.0, c1 <= 1.5, c2 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1138 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 <= 10.0, c5 > 1.0, c1 > 1.5, c2 > 13, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1139 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 <= 10.0, c5 > 1.0, c1 > 1.5, c2 > 13, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1142 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 <= 10.0, c5 <= 1.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1146 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 > 10.0, c1 > 6.5, c2 <= 2.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1147 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 4, c3 > 10.0, c1 > 6.5, c2 <= 2.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1150 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 <= 9.0, c3 > 2.0, c4 <= 1.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1151 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 <= 9.0, c3 > 2.0, c4 <= 1.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1153 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 > 9.0, c5 <= 9.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1154 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 > 9.0, c5 <= 9.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1155 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 > 9.0, c5 > 9.5, c4 <= 4.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1156 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 > 2.0, c1 > 9.0, c5 > 9.5, c4 <= 4.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1158 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 <= 2.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1159 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 3, c2 <= 2.0, c1 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1160 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 <= 4.5, c2 <= 9.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1161 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 <= 4.5, c2 <= 9.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1162 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 <= 4.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 > 4.5, c3 <= 4.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1164 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 > 4.5, c3 <= 4.0, c2 <= 8.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1165 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 > 4.5, c3 <= 4.0, c2 <= 8.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1166 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 > 4.5, c3 > 4.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1169 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 > 4.5, c3 > 4.0, c4 > 1.5, c2 <= 1.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1170 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 2, c1 > 4.5, c3 > 4.0, c4 > 1.5, c2 <= 1.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 1, c1 > 1.5, c2 > 1.0, c3 > 1.0, c4 > 1.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 1, c1 > 1.5, c2 > 1.0, c3 > 1.0, c4 <= 1.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1175 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 1, c1 > 1.5, c2 > 1.0, c3 > 1.0, c4 <= 1.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1177 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 1, c1 > 1.5, c2 <= 1.0, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1178 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 4, s3 == 1, c1 > 1.5, c2 <= 1.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1179 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 > 2.0, c2 <= 1.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1180 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 > 2.0, c2 <= 1.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1186 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 > 2.0, c2 > 1.5, c5 > 10.5, c4 <= 5.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1187 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 4, c1 > 2.0, c2 > 1.5, c5 > 10.5, c4 <= 5.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1189 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 3, c5 <= 12.5, c1 > 1.0, c2 <= 2.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1190 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 3, c5 <= 12.5, c1 > 1.0, c2 <= 2.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1192 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 3, c5 <= 12.5, c1 > 1.0, c2 > 2.5, c3 <= 9.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1194 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 3, c5 <= 12.5, c1 > 1.0, c2 > 2.5, c3 > 9.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1195 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 3, c5 <= 12.5, c1 <= 1.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1196 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 3, c5 <= 12.5, c1 <= 1.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1197 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 3, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1198 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 <= 6.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1199 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 <= 6.5, c2 > 3.5, c1 > 2.0, c3 <= 10.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1202 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 <= 6.5, c2 > 3.5, c1 <= 2.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1203 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 <= 6.5, c2 > 3.5, c1 <= 2.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1204 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 > 6.5, c5 <= 1.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1205 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 > 6.5, c5 <= 1.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1206 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 > 6.5, c5 > 1.5, c3 <= 3.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1207 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 2, c4 > 6.5, c5 > 1.5, c3 <= 3.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1213 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 > 2.0, c3 <= 9.0, c4 <= 9.0, c1 <= 8.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1216 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 > 2.0, c3 > 9.0, c2 <= 5.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 > 2.0, c3 > 9.0, c2 <= 5.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1218 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 <= 2.0, c1 <= 10.0, c2 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1219 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 <= 2.0, c1 <= 10.0, c2 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1220 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 3, s3 == 1, c5 <= 2.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1221 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 4, c4 > 1.0, c2 > 11.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1222 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 4, c4 > 1.0, c2 > 11.5, c1 <= 7.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1224 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 4, c4 > 1.0, c2 <= 11.5, c5 <= 6.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1226 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 4, c4 > 1.0, c2 <= 11.5, c5 > 6.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1227 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 4, c4 > 1.0, c2 <= 11.5, c5 > 6.5, c3 > 1.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1229 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 4, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1230 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 3, c3 <= 12.0, c1 > 2.0, c2 <= 3.5, c4 <= 4.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1231 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 3, c3 <= 12.0, c1 > 2.0, c2 <= 3.5, c4 <= 4.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1237 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 3, c3 > 12.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1239 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 > 11.5, c1 <= 10.5, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1240 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 > 11.5, c1 <= 10.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1241 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 > 11.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1242 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 <= 11.5, c3 <= 11.0, c5 <= 11.0, c1 <= 4.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1243 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 <= 11.5, c3 <= 11.0, c5 <= 11.0, c1 <= 4.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1244 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 <= 11.5, c3 <= 11.0, c5 <= 11.0, c1 > 4.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1247 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 <= 11.5, c3 <= 11.0, c5 > 11.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1248 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 <= 11.5, c3 > 11.0, c2 <= 6.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1249 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 2, c4 <= 11.5, c3 > 11.0, c2 <= 6.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 > 1.5, c1 <= 8.5, c4 > 1.0, c3 <= 11.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1254 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 > 1.5, c1 <= 8.5, c4 > 1.0, c3 > 11.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 > 1.5, c1 <= 8.5, c4 <= 1.0, c3 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 > 1.5, c1 <= 8.5, c4 <= 1.0, c3 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1258 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 > 1.5, c1 > 8.5, c5 > 3.0, c3 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1260 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 2, s3 == 1, c2 > 1.5, c1 > 8.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1263 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 > 7.0, c5 <= 10.5, c1 <= 10.5, c4 > 10.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1264 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 > 7.0, c5 <= 10.5, c1 <= 10.5, c4 > 10.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1266 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 > 7.0, c5 > 10.5, c1 <= 10.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 > 7.0, c5 > 10.5, c1 <= 10.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1268 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 > 7.0, c5 > 10.5, c1 > 10.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1269 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 > 7.0, c5 > 10.5, c1 > 10.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1271 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 4, c2 <= 7.0, c1 > 7.0, c4 <= 10.0, c3 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1274 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 <= 5.0, c4 <= 9.5, c1 > 7.0, c2 <= 11.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1275 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 <= 5.0, c4 <= 9.5, c1 > 7.0, c2 <= 11.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1279 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 <= 5.0, c4 > 9.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1280 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 > 5.0, c2 > 11.5, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1281 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 > 5.0, c2 > 11.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1282 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 3, c5 > 5.0, c2 <= 11.5, c4 > 1.0, c3 <= 11.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1286 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 2, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1287 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 2, c5 > 1.5, c2 <= 12.5, c3 <= 3.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1288 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 2, c5 > 1.5, c2 <= 12.5, c3 <= 3.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1289 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 2, c5 > 1.5, c2 <= 12.5, c3 > 3.0, c1 <= 3.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 2, c5 > 1.5, c2 <= 12.5, c3 > 3.0, c1 <= 3.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1295 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 <= 5.0, c2 > 7.0, c3 <= 6.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1296 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 <= 5.0, c2 > 7.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1297 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 <= 5.0, c2 <= 7.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1298 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 <= 5.0, c2 <= 7.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 > 5.0, c3 <= 8.0, c5 <= 4.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1301 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 > 5.0, c3 <= 8.0, c5 > 4.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 > 5.0, c3 > 8.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1304 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 > 1.0, c4 > 5.0, c3 > 8.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1305 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 <= 1.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1306 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 3, s1 == 1, s2 == 1, s3 == 1, c1 <= 1.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1308 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 4, c3 <= 8.5, c4 <= 12.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1309 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 4, c3 <= 8.5, c4 <= 12.5, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1311 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 > 2.0, c3 <= 4.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 > 2.0, c3 <= 4.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1314 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 > 2.0, c3 > 4.0, c5 <= 6.0, c1 <= 7.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1315 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 > 2.0, c3 > 4.0, c5 <= 6.0, c1 <= 7.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 > 2.0, c3 > 4.0, c5 > 6.0, c1 <= 4.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 > 2.0, c3 > 4.0, c5 > 6.0, c1 > 4.5, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1320 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 3, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1322 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 2, c2 <= 12.0, c3 > 1.0, c4 > 11.5, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1325 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 2, c2 <= 12.0, c3 > 1.0, c4 <= 11.5, c1 > 6.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1327 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 2, c2 <= 12.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 2, c2 > 12.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1329 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 2, c2 > 12.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1330 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 1, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1331 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 1, c2 <= 13, c3 <= 12.0, c1 <= 2.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1333 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 1, c2 <= 13, c3 <= 12.0, c1 <= 2.5, c4 <= 9.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 1, c2 <= 13, c3 <= 12.0, c1 > 2.5, c5 <= 11.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1337 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 4, s3 == 1, c2 <= 13, c3 > 12.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1339 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 4, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1341 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 4, c1 > 1.5, c3 > 2.0, c4 > 3.5, c2 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1343 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 4, c1 > 1.5, c3 > 2.0, c4 > 3.5, c2 <= 2.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1344 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 4, c1 > 1.5, c3 > 2.0, c4 > 3.5, c2 <= 2.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1346 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 4, c1 > 1.5, c3 <= 2.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 3, c4 > 3.5, c1 <= 2.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1349 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 3, c4 > 3.5, c1 <= 2.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1354 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 <= 3.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1355 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 <= 3.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1356 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 > 3.0, c4 > 2.0, c3 <= 3.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1357 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 > 3.0, c4 > 2.0, c3 <= 3.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1358 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 > 3.0, c4 > 2.0, c3 > 3.0, c1 <= 2.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1362 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 > 3.0, c4 <= 2.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1363 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 > 3.0, c4 <= 2.0, c1 > 7.5, c3 <= 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1364 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 2, c2 > 3.0, c4 <= 2.0, c1 > 7.5, c3 > 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1365 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 > 5.5, c2 <= 6.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1367 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 > 5.5, c2 <= 6.5, c1 > 3.0, c3 > 4.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1368 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 > 5.5, c2 <= 6.5, c1 > 3.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1370 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 > 5.5, c2 > 6.5, c1 > 6.0, c3 <= 10.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1372 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 > 5.5, c2 > 6.5, c1 > 6.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1374 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 <= 5.5, c5 > 6.5, c3 <= 2.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1375 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 <= 5.5, c5 > 6.5, c3 <= 2.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1377 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 <= 5.5, c5 > 6.5, c3 > 2.5, c1 > 3.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1378 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 3, s3 == 1, c4 <= 5.5, c5 > 6.5, c3 > 2.5, c1 > 3.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1382 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 <= 11.0, c4 <= 7.0, c3 <= 12.5, c1 > 10.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1384 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 <= 11.0, c4 <= 7.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 > 11.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1387 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 > 11.0, c3 > 7.5, c4 <= 4.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1388 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 4, c2 > 11.0, c3 > 7.5, c4 <= 4.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1389 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 <= 12.0, c5 <= 9.5, c1 <= 12.5, c4 <= 3.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1390 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 <= 12.0, c5 <= 9.5, c1 <= 12.5, c4 <= 3.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1391 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 <= 12.0, c5 <= 9.5, c1 <= 12.5, c4 > 3.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1393 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 <= 12.0, c5 <= 9.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1395 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 <= 12.0, c5 > 9.5, c1 > 2.0, c2 <= 10.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1396 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 <= 12.0, c5 > 9.5, c1 > 2.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1397 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 <= 12.0, c5 > 9.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1398 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 > 12.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1400 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 > 12.0, c1 > 3.0, c2 <= 6.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1401 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 3, c3 > 12.0, c1 > 3.0, c2 <= 6.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1402 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 2, c1 <= 1.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1403 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 2, c1 <= 1.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1404 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 2, c1 > 1.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1405 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 2, c1 > 1.5, c4 <= 11.5, c2 > 2.0, c3 <= 3.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1406 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 2, c1 > 1.5, c4 <= 11.5, c2 > 2.0, c3 <= 3.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1407 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 2, c1 > 1.5, c4 <= 11.5, c2 > 2.0, c3 > 3.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1409 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 2, c1 > 1.5, c4 <= 11.5, c2 <= 2.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1411 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 > 2.0, c4 > 1.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1412 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 > 2.0, c4 > 1.0, c1 > 1.5, c2 <= 1.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1413 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 > 2.0, c4 > 1.0, c1 > 1.5, c2 <= 1.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1416 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 > 2.0, c4 <= 1.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1417 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 > 2.0, c4 <= 1.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1419 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 <= 2.0, c1 > 6.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1420 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 <= 2.0, c1 > 6.0, c2 > 5.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1421 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 <= 2.0, c1 > 6.0, c2 > 5.0, c3 <= 7.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1422 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 2, s3 == 1, c5 <= 2.0, c1 > 6.0, c2 > 5.0, c3 <= 7.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1426 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 <= 9.0, c3 > 1.5, c5 > 9.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1427 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 <= 9.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1428 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 > 9.0, c4 > 6.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1429 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 > 9.0, c4 > 6.5, c3 <= 9.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 > 9.0, c4 <= 6.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1432 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 > 9.0, c4 <= 6.5, c3 > 3.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1433 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 4, c1 > 2.0, c2 > 9.0, c4 <= 6.5, c3 > 3.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1435 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 <= 3.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1437 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 > 3.0, c2 <= 12.5, c1 <= 3.0, c3 <= 6.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1438 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 > 3.0, c2 <= 12.5, c1 <= 3.0, c3 <= 6.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1439 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 > 3.0, c2 <= 12.5, c1 <= 3.0, c3 > 6.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1440 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 > 3.0, c2 <= 12.5, c1 <= 3.0, c3 > 6.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1441 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 > 3.0, c2 <= 12.5, c1 > 3.0, c3 <= 2.5, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1445 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 3, c4 > 3.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1446 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 2, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1450 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 2, c5 > 1.5, c1 <= 11.0, c2 <= 1.0, c3 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1451 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 2, c5 > 1.5, c1 <= 11.0, c2 <= 1.0, c3 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1452 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 2, c5 > 1.5, c1 > 11.0, c2 <= 6.5, c3 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1453 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 2, c5 > 1.5, c1 > 11.0, c2 <= 6.5, c3 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1455 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 > 13, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1456 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 > 13, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1457 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 <= 13, c1 > 7.0, c5 <= 3.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1459 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 <= 13, c1 > 7.0, c5 > 3.5, c2 > 8.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1464 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 <= 13, c1 <= 7.0, c5 > 2.0, c2 > 2.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1465 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 4, s2 == 1, s3 == 1, c3 <= 13, c1 <= 7.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1466 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1467 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 <= 5.0, c1 > 4.5, c4 <= 2.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1468 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 <= 5.0, c1 > 4.5, c4 <= 2.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1473 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 > 5.0, c1 > 2.5, c4 <= 1.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1474 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 4, c2 > 1.5, c3 > 5.0, c1 > 2.5, c4 <= 1.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1478 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 <= 3.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1479 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 > 3.0, c5 > 11.5, c1 <= 8.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1480 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 > 3.0, c5 > 11.5, c1 <= 8.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1481 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 > 3.0, c5 > 11.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1482 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 > 3.0, c5 <= 11.5, c1 > 12, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1483 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 > 3.0, c5 <= 11.5, c1 > 12, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1484 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 > 3.0, c5 <= 11.5, c1 <= 12, c3 <= 3.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1485 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 3, c4 > 3.0, c5 <= 11.5, c1 <= 12, c3 <= 3.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1489 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 > 7.0, c3 <= 12.0, c1 <= 10, c5 <= 9.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1490 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 > 7.0, c3 <= 12.0, c1 <= 10, c5 > 9.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1491 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 > 7.0, c3 <= 12.0, c1 <= 10, c5 > 9.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1492 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 > 7.0, c3 <= 12.0, c1 > 10, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1493 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 > 7.0, c3 <= 12.0, c1 > 10, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1495 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 > 7.0, c3 > 12.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1496 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 <= 7.0, c1 <= 6.0, c2 <= 7.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1497 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 <= 7.0, c1 <= 6.0, c2 <= 7.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1498 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 <= 7.0, c1 <= 6.0, c2 > 7.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1499 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 <= 7.0, c1 <= 6.0, c2 > 7.5, c5 > 3.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1500 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 <= 7.0, c1 <= 6.0, c2 > 7.5, c5 > 3.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1501 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 <= 7.0, c1 > 6.0, c5 <= 6.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1502 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 2, c4 <= 7.0, c1 > 6.0, c5 <= 6.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1504 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 <= 3.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1505 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 <= 3.5, c5 > 3.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 <= 3.5, c5 > 3.5, c3 > 2.0, c2 <= 6.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1508 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 <= 3.5, c5 > 3.5, c3 > 2.0, c2 <= 6.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1511 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 <= 6.0, c2 > 4.0, c4 <= 8.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1514 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 4, s2 == 1, c1 > 3.5, c3 <= 6.0, c2 > 4.0, c4 > 8.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1520 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 <= 9.0, c1 > 11.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1524 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 <= 9.0, c1 <= 11.5, c2 > 6.0, c3 > 4.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1526 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 > 9.0, c2 <= 4.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1527 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 > 9.0, c2 > 4.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1528 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 4, c4 > 9.0, c2 > 4.0, c1 > 3.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1530 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 <= 4.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1531 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 <= 4.0, c4 > 3.5, c2 > 8.5, c3 > 5.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1532 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 <= 4.0, c4 > 3.5, c2 > 8.5, c3 > 5.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1533 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 <= 4.0, c4 > 3.5, c2 > 8.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1535 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 > 4.0, c5 <= 4.0, c2 <= 10.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1536 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 > 4.0, c5 <= 4.0, c2 <= 10.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1537 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 > 4.0, c5 <= 4.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1539 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 > 4.0, c5 > 4.0, c2 > 3.0, c3 <= 4.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1540 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 > 4.0, c5 > 4.0, c2 > 3.0, c3 <= 4.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1542 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 3, c1 > 4.0, c5 > 4.0, c2 > 3.0, c3 > 4.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1543 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 2, c3 > 2.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1548 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 2, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1549 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 1, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1554 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 3, s2 == 1, c1 > 1.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1555 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 <= 9.0, c1 > 1.0, c4 <= 10.5, c2 <= 2.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1556 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 <= 9.0, c1 > 1.0, c4 <= 10.5, c2 <= 2.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1560 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 <= 9.0, c1 > 1.0, c4 > 10.5, c2 <= 10.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1561 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 <= 9.0, c1 > 1.0, c4 > 10.5, c2 > 10.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 <= 9.0, c1 > 1.0, c4 > 10.5, c2 > 10.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1563 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 4, c3 <= 9.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1566 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 3, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1571 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 3, c1 > 1.0, c2 > 1.5, c3 > 12.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1572 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 3, c1 > 1.0, c2 > 1.5, c3 > 12.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1573 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 3, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 2, c1 <= 13, c2 > 3.0, c3 > 8.5, c5 <= 4.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1577 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 2, c1 <= 13, c2 > 3.0, c3 > 8.5, c5 <= 4.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1581 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 2, c1 <= 13, c2 > 3.0, c3 <= 8.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1582 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 <= 3.0, c2 > 2.0, c1 <= 3.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1583 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 <= 3.0, c2 > 2.0, c1 <= 3.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1586 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 <= 3.0, c2 > 2.0, c1 > 3.0, c3 > 3.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1587 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 <= 3.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1588 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 > 3.0, c2 <= 12.5, c3 <= 6.0, c1 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1590 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 > 3.0, c2 <= 12.5, c3 <= 6.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1594 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 > 3.0, c2 <= 12.5, c3 > 6.0, c1 > 10.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1595 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 2, s2 == 1, c4 > 3.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1600 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 4, c5 > 3.0, c2 > 2.0, c3 > 3.0, c1 <= 1.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1601 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 4, c5 > 3.0, c2 > 2.0, c3 > 3.0, c1 <= 1.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1602 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 4, c5 > 3.0, c2 <= 2.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1603 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 4, c5 > 3.0, c2 <= 2.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1604 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 > 2.0, c2 <= 1.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1605 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 > 2.0, c2 <= 1.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1606 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 > 2.0, c2 > 1.5, c3 <= 12.5, c4 <= 4.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1607 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 > 2.0, c2 > 1.5, c3 <= 12.5, c4 <= 4.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1609 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 > 2.0, c2 > 1.5, c3 <= 12.5, c4 > 4.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1610 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 > 2.0, c2 > 1.5, c3 > 12.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 > 2.0, c2 > 1.5, c3 > 12.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1612 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 <= 2.0, c2 <= 9.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1613 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 3, c1 <= 2.0, c2 <= 9.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1615 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 2, c1 <= 2.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1616 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 2, c1 <= 2.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1617 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 2, c1 > 2.5, c3 <= 10.0, c2 <= 3.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1618 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 2, c1 > 2.5, c3 <= 10.0, c2 <= 3.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 2, c1 > 2.5, c3 <= 10.0, c2 > 3.0, c5 <= 4.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1620 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 2, c1 > 2.5, c3 <= 10.0, c2 > 3.0, c5 <= 4.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1626 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 1, c5 <= 8.5, c1 > 2.0, c2 <= 12.5, c4 > 2.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1628 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 1, c5 <= 8.5, c1 <= 2.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#1629 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 3, s3 == 1, s2 == 1, c5 <= 8.5, c1 <= 2.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 > 4.0, c3 <= 10.0, c1 <= 12.0, c4 <= 2.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 > 4.0, c3 <= 10.0, c1 <= 12.0, c4 <= 2.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1636 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 > 4.0, c3 <= 10.0, c1 > 12.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1637 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 > 4.0, c3 > 10.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1639 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 4, c2 > 4.0, c3 > 10.0, c1 > 8.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1640 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 3, c4 > 2.0, c5 <= 12.0, c3 <= 5.0, c2 <= 4.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1641 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 3, c4 > 2.0, c5 <= 12.0, c3 <= 5.0, c2 <= 4.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1644 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 3, c4 > 2.0, c5 <= 12.0, c3 > 5.0, c1 > 4.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1647 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 3, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1648 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 2, c5 > 1.0, c3 > 11.5, c1 <= 11.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1649 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 2, c5 > 1.0, c3 > 11.5, c1 <= 11.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1650 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 2, c5 > 1.0, c3 > 11.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1656 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 2, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1657 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 1, c1 <= 2.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1658 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 1, c1 <= 2.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1659 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 1, c1 > 2.5, c5 <= 3.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1661 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 1, c1 > 2.5, c5 > 3.0, c3 <= 11.0, c2 > 13, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1662 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 1, c1 > 2.5, c5 > 3.0, c3 <= 11.0, c2 > 13, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1665 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 4, s3 == 1, c1 > 2.5, c5 > 3.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1666 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 4, c5 > 1.0, c3 > 2.0, c4 <= 12.0, c2 <= 3.0, c1 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 4, c5 > 1.0, c3 > 2.0, c4 <= 12.0, c2 > 3.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1671 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 4, c5 > 1.0, c3 <= 2.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1672 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 4, c5 > 1.0, c3 <= 2.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1673 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 4, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1677 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 3, c2 <= 12.5, c3 <= 12.0, c1 > 2.0, c4 <= 2.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1678 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 3, c2 <= 12.5, c3 <= 12.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1680 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 3, c2 > 12.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1681 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 3, c2 > 12.5, c1 <= 8.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1682 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 3, c2 > 12.5, c1 <= 8.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1683 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 <= 6.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1684 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 <= 6.0, c1 > 2.5, c4 <= 3.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1685 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 <= 6.0, c1 > 2.5, c4 <= 3.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1687 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 > 6.0, c1 <= 3.0, c4 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 <= 12.0, c3 > 6.0, c1 > 3.0, c4 > 9.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1693 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 > 12.0, c1 <= 9.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1694 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 > 12.0, c1 <= 9.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1695 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 2, c2 > 12.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1697 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 <= 2.5, c2 > 2.0, c3 <= 7.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1698 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 <= 2.5, c2 > 2.0, c3 <= 7.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1699 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 <= 2.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1700 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 > 2.5, c5 <= 4.0, c3 > 2.0, c1 > 7.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 > 2.5, c5 <= 4.0, c3 > 2.0, c1 > 7.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1702 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 > 2.5, c5 <= 4.0, c3 > 2.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1703 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 > 2.5, c5 <= 4.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1707 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 > 2.5, c5 > 4.0, c1 <= 1.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1708 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 3, s3 == 1, c4 > 2.5, c5 > 4.0, c1 <= 1.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1711 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 4, c5 <= 4.0, c1 > 6.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1712 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 4, c5 > 4.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1714 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 4, c5 > 4.0, c2 > 2.5, c1 > 4.0, c3 <= 8.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1716 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 4, c5 > 4.0, c2 > 2.5, c1 > 4.0, c3 > 8.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1717 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 4, c5 > 4.0, c2 > 2.5, c1 > 4.0, c3 > 8.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1718 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 > 1.0, c1 <= 1.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1719 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 > 1.0, c1 <= 1.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1721 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 > 1.0, c1 > 1.5, c5 <= 12.0, c2 > 2.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1723 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 > 1.0, c1 > 1.5, c5 > 12.0, c2 <= 6.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1724 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 > 1.0, c1 > 1.5, c5 > 12.0, c2 <= 6.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1725 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 > 1.0, c1 > 1.5, c5 > 12.0, c2 > 6.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1726 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 > 1.0, c1 > 1.5, c5 > 12.0, c2 > 6.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1727 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 3, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1728 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 2, c1 <= 10.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1729 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 2, c1 <= 10.5, c2 > 3.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1730 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 2, c1 <= 10.5, c2 > 3.0, c5 > 4.0, c4 <= 3.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1731 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 2, c1 <= 10.5, c2 > 3.0, c5 > 4.0, c4 <= 3.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1732 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 2, c1 <= 10.5, c2 > 3.0, c5 > 4.0, c4 > 3.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1736 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 > 2.0, c5 > 13, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1740 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 > 2.0, c5 <= 13, c4 > 2.0, c1 <= 2.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1741 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 > 2.0, c5 <= 13, c4 > 2.0, c1 <= 2.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1743 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 <= 2.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1744 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 <= 2.0, c1 <= 11.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1745 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 2, s3 == 1, c3 <= 2.0, c1 <= 11.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1746 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 4, c3 <= 11.0, c1 <= 6.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1750 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 4, c3 <= 11.0, c1 > 6.0, c2 > 5.0, c5 <= 3.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1752 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 4, c3 <= 11.0, c1 > 6.0, c2 > 5.0, c5 > 3.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1754 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 3, c4 > 1.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 3, c4 > 1.0, c1 <= 13, c5 > 2.5, c2 <= 9.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1758 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 3, c4 > 1.0, c1 <= 13, c5 > 2.5, c2 > 9.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1759 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 3, c4 > 1.0, c1 <= 13, c5 > 2.5, c2 > 9.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1760 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 3, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1764 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 <= 8.0, c3 > 2.0, c4 > 6.5, c1 <= 10.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1765 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 <= 8.0, c3 > 2.0, c4 > 6.5, c1 <= 10.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1768 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 > 8.0, c4 > 2.0, c1 <= 12.5, c2 <= 10.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1772 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 2, c5 > 8.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1773 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 <= 4.0, c3 <= 5.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1774 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 <= 4.0, c3 <= 5.5, c2 <= 9.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1775 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 <= 4.0, c3 <= 5.5, c2 <= 9.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1776 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 <= 4.0, c3 > 5.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 > 4.0, c4 > 5.5, c5 <= 9.5, c2 <= 10.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1780 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 2, s2 == 1, s3 == 1, c1 > 4.0, c4 > 5.5, c5 <= 9.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1783 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1785 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 > 7.0, c4 <= 9.0, c2 <= 5.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1788 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 <= 7.0, c2 > 7.0, c4 <= 5.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1791 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 4, c1 <= 12, c3 <= 7.0, c2 > 7.0, c4 > 5.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1794 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 > 7.0, c1 <= 1.5, c5 <= 10.0, c3 > 2.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 > 7.0, c1 <= 1.5, c5 <= 10.0, c3 > 2.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1796 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 > 7.0, c1 <= 1.5, c5 <= 10.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1798 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 > 7.0, c1 > 1.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1800 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 > 7.0, c1 > 1.5, c4 > 1.5, c3 <= 6.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1805 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 <= 7.0, c1 <= 11.5, c3 <= 8.5, c4 <= 10.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1807 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 3, c2 <= 7.0, c1 <= 11.5, c3 <= 8.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1808 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 <= 2.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1809 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 <= 2.5, c1 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1810 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 > 2.0, c4 > 7.0, c5 <= 1.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 > 2.0, c4 > 7.0, c5 <= 1.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1812 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 > 2.0, c4 > 7.0, c5 > 1.5, c1 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1815 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 > 2.0, c4 <= 7.0, c1 > 4.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1817 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 <= 2.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1818 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 <= 2.0, c1 > 4.5, c4 <= 2.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1819 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 2, c2 > 2.5, c3 <= 2.0, c1 > 4.5, c4 <= 2.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1821 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 1, c1 > 2.0, c5 <= 11.0, c2 <= 11.0, c3 <= 1.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1822 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 1, c1 > 2.0, c5 <= 11.0, c2 <= 11.0, c3 <= 1.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 1, c1 > 2.0, c5 <= 11.0, c2 > 11.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1826 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 1, c1 > 2.0, c5 <= 11.0, c2 > 11.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1828 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 1, c1 <= 2.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1829 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 4, s3 == 1, c1 <= 2.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1831 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 <= 12.0, c1 > 2.5, c2 > 11.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1832 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 <= 12.0, c1 > 2.5, c2 > 11.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1833 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 <= 12.0, c1 > 2.5, c2 <= 11.5, c3 <= 3.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1834 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 <= 12.0, c1 > 2.5, c2 <= 11.5, c3 <= 3.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 <= 12.0, c1 > 2.5, c2 <= 11.5, c3 > 3.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1837 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 > 12.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1838 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 > 12.0, c1 <= 7.5, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1839 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 4, c5 > 12.0, c1 <= 7.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1840 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 3, c3 <= 9.5, c5 > 1.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1843 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 3, c3 <= 9.5, c5 > 1.0, c1 > 1.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1844 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 3, c3 <= 9.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 3, c3 > 9.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1847 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 3, c3 > 9.5, c1 > 6.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#1849 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 2, c4 > 1.0, c1 > 1.0, c5 > 4.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1854 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 2, c4 <= 1.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1855 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 > 11, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1858 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 <= 11, c3 <= 9.0, c2 > 7.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1860 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 <= 11, c3 <= 9.0, c2 <= 7.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 <= 11, c3 > 9.0, c2 > 5.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1863 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 <= 11, c3 > 9.0, c2 <= 5.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1864 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 > 2.0, c4 <= 11, c3 > 9.0, c2 <= 5.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1865 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 <= 2.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1866 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 3, s3 == 1, c1 <= 2.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1870 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 4, c4 <= 10.0, c1 > 1.0, c2 > 1.0, c3 > 10.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1871 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 4, c4 <= 10.0, c1 > 1.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1872 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 4, c4 <= 10.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1874 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 4, c4 > 10.0, c1 <= 7.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 4, c4 > 10.0, c1 <= 7.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1876 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 > 2.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1880 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1881 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 3, c1 <= 1.0, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 3, c1 <= 1.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1883 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 2, c2 <= 3.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1885 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 2, c2 > 3.0, c5 > 2.0, c1 <= 12.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1888 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 2, c2 > 3.0, c5 > 2.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1892 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 > 2.0, c5 <= 11.0, c1 > 1.0, c3 <= 13, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1893 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 > 2.0, c5 <= 11.0, c1 <= 1.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1894 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 > 2.0, c5 <= 11.0, c1 <= 1.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 > 2.0, c5 > 11.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1897 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 <= 2.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1898 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 <= 2.0, c1 <= 11.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1899 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 2, s3 == 1, c2 <= 2.0, c1 <= 11.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1900 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 4, c3 <= 10, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1901 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 4, c3 <= 10, c5 <= 12, c4 > 7.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1902 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 4, c3 <= 10, c5 <= 12, c4 > 7.0, c1 > 4.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1903 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 4, c3 <= 10, c5 <= 12, c4 > 7.0, c1 > 4.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1904 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 4, c3 <= 10, c5 <= 12, c4 <= 7.0, c1 <= 2.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1905 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 4, c3 <= 10, c5 <= 12, c4 <= 7.0, c1 <= 2.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1906 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 4, c3 <= 10, c5 <= 12, c4 <= 7.0, c1 > 2.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1908 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 4, c3 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1909 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 3, c5 > 1.0, c4 <= 11.0, c1 <= 3.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 3, c5 > 1.0, c4 > 11.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1917 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 3, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1918 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 <= 4.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1920 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 <= 4.0, c3 > 5.0, c1 > 5.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 <= 4.0, c3 > 5.0, c1 > 5.0, c2 <= 7.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1922 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 <= 4.0, c3 > 5.0, c1 > 5.0, c2 <= 7.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1923 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 > 4.0, c1 <= 3.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1924 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 > 4.0, c1 <= 3.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1925 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 > 4.0, c1 > 3.0, c2 <= 6.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1927 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 > 4.0, c1 > 3.0, c2 > 6.5, c5 <= 12.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1929 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 2, c4 > 4.0, c1 > 3.0, c2 > 6.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1931 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 4.5, c2 <= 7.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1932 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 1, c3 > 1.0, c5 <= 4.5, c2 <= 7.0, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1933 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 1, c3 > 1.0, c5 > 4.5, c1 <= 3.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1934 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 2, s1 == 1, s2 == 1, s3 == 1, c3 > 1.0, c5 > 4.5, c1 <= 3.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1941 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 4, c3 <= 8.5, c1 <= 7.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 <= 10.5, c2 <= 2.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1945 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 <= 10.5, c2 <= 2.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1949 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 <= 10.5, c2 > 2.5, c1 > 9.5, c4 <= 3.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1950 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 <= 10.5, c2 > 2.5, c1 > 9.5, c4 <= 3.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1953 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 > 10.5, c1 <= 6.0, c2 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1955 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 > 10.5, c1 > 6.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1956 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 3, c3 > 10.5, c1 > 6.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1957 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 2, c3 <= 2.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1958 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 2, c3 <= 2.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1959 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 2, c3 > 2.5, c4 <= 8.5, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#1961 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 2, c3 > 2.5, c4 <= 8.5, c1 <= 12, c2 <= 5.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1965 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 <= 1.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1966 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 <= 1.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1969 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 > 1.5, c4 > 2.5, c1 > 7.0, c2 > 6.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 > 1.5, c4 > 2.5, c1 <= 7.0, c2 <= 5.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1972 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 > 1.5, c4 > 2.5, c1 <= 7.0, c2 <= 5.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1974 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 4, s3 == 1, c3 > 1.5, c4 > 2.5, c1 <= 7.0, c2 > 5.0, c5 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1976 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 <= 9.0, c4 > 1.0, c1 <= 12.0, c2 > 1.5, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1978 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 <= 9.0, c4 > 1.0, c1 > 12.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1979 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 <= 9.0, c4 > 1.0, c1 > 12.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1980 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 <= 9.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1981 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 > 9.0, c2 > 7.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1982 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 > 9.0, c2 > 7.0, c1 > 4.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1984 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 > 9.0, c2 <= 7.0, c5 <= 8.0, c1 <= 7.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1985 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 > 9.0, c2 <= 7.0, c5 <= 8.0, c1 <= 7.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1986 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 > 9.0, c2 <= 7.0, c5 <= 8.0, c1 > 7.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1987 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 > 9.0, c2 <= 7.0, c5 <= 8.0, c1 > 7.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1989 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 4, c3 > 9.0, c2 <= 7.0, c5 > 8.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1990 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 <= 11.0, c4 <= 2.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#1991 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 <= 11.0, c4 <= 2.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1992 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 <= 11.0, c4 > 2.5, c1 <= 12.5, c3 > 11.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1993 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 <= 11.0, c4 > 2.5, c1 <= 12.5, c3 > 11.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1995 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 <= 11.0, c4 > 2.5, c1 <= 12.5, c3 <= 11.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1996 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 <= 11.0, c4 > 2.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1997 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 > 11.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#1998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 > 11.0, c4 > 5.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#1999 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 > 11.0, c4 > 5.0, c1 > 3.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2000 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 3, c2 > 11.0, c4 > 5.0, c1 > 3.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2001 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 <= 6.5, c4 > 1.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2003 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 <= 6.5, c4 > 1.0, c2 > 3.0, c1 <= 9.0, c5 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2004 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 <= 6.5, c4 > 1.0, c2 > 3.0, c1 > 9.0, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2006 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 <= 6.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2007 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 > 11.5, c1 <= 12.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2008 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 > 11.5, c1 <= 12.0, c4 > 3.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2009 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 > 11.5, c1 <= 12.0, c4 > 3.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2010 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 > 11.5, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 <= 11.5, c1 > 7.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2013 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 <= 11.5, c1 <= 7.0, c4 <= 3.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2014 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 <= 11.5, c1 <= 7.0, c4 <= 3.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2016 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 2, c3 > 6.5, c2 <= 11.5, c1 <= 7.0, c4 > 3.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2019 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 <= 10.5, c2 <= 12.5, c1 <= 2.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 <= 10.5, c2 <= 12.5, c1 <= 2.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 > 10.5, c1 > 1.0, c2 <= 10.5, c3 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2024 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 > 10.5, c1 > 1.0, c2 > 10.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2025 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 > 10.5, c1 > 1.0, c2 > 10.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2026 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 3, s3 == 1, c4 <= 10.0, c5 > 10.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2030 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 4, c3 > 4.5, c2 > 1.0, c1 <= 1.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2031 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 4, c3 > 4.5, c2 > 1.0, c1 <= 1.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2035 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 4, c3 > 4.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 <= 4.0, c3 > 2.0, c1 <= 5.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2037 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 <= 4.0, c3 > 2.0, c1 <= 5.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2039 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 <= 4.0, c3 <= 2.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2040 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 <= 4.0, c3 <= 2.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2041 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 > 4.0, c3 > 2.0, c1 <= 3.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2042 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 > 4.0, c3 > 2.0, c1 <= 3.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2044 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 > 4.0, c3 > 2.0, c1 > 3.0, c2 > 7.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2047 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 > 4.0, c3 <= 2.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2048 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 3, c4 > 4.0, c3 <= 2.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2050 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 <= 4.0, c1 <= 10.0, c2 <= 5.5, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2051 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 <= 4.0, c1 <= 10.0, c2 <= 5.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2052 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 <= 4.0, c1 > 10.0, c2 > 5.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2053 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 <= 4.0, c1 > 10.0, c2 > 5.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2054 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 <= 4.0, c1 > 10.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2055 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 > 2.0, c5 > 4.0, c1 <= 4.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2059 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 <= 2.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2060 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 <= 2.0, c1 > 4.5, c2 <= 9.0, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2061 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 <= 2.0, c1 > 4.5, c2 <= 9.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2062 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 2, c4 <= 2.0, c1 > 4.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2067 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 <= 6.0, c2 > 2.5, c3 > 2.5, c4 <= 7.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2068 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 <= 6.0, c2 > 2.5, c3 > 2.5, c4 <= 7.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2072 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 > 6.0, c2 > 1.0, c5 > 7.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2073 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 > 6.0, c2 <= 1.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2074 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 2, s3 == 1, c1 > 6.0, c2 <= 1.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2078 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 4, c5 <= 7.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2079 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 4, c5 <= 7.0, c3 > 1.5, c4 <= 9.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2080 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 4, c5 <= 7.0, c3 > 1.5, c4 <= 9.5, c1 > 4.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2082 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 4, c5 <= 7.0, c3 > 1.5, c4 > 9.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2085 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 <= 3.5, c2 > 5.5, c3 <= 6.5, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2086 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 <= 3.5, c2 > 5.5, c3 <= 6.5, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2087 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 <= 3.5, c2 <= 5.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 <= 3.5, c2 <= 5.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2089 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 > 3.5, c3 <= 10.0, c4 <= 11.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2091 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 > 3.5, c3 <= 10.0, c4 <= 11.0, c2 > 5.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2092 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 > 3.5, c3 <= 10.0, c4 > 11.0, c2 <= 10.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2093 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 > 3.5, c3 <= 10.0, c4 > 11.0, c2 <= 10.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2094 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 > 3.5, c3 <= 10.0, c4 > 11.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2095 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 > 3.5, c3 > 10.0, c5 <= 5.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2096 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 3, c1 > 3.5, c3 > 10.0, c5 <= 5.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2099 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 <= 7.5, c2 > 2.5, c4 <= 3.0, c5 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2100 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 <= 7.5, c2 > 2.5, c4 <= 3.0, c5 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2103 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 > 7.5, c5 <= 2.5, c2 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2104 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 > 1.0, c1 > 7.5, c5 <= 2.5, c2 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2108 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 2, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2110 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 1, c5 > 4.0, c3 <= 11.0, c4 <= 2.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2113 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 1, c5 > 4.0, c3 <= 11.0, c4 > 2.5, c1 > 1.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2114 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 1, c5 > 4.0, c3 <= 11.0, c4 > 2.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2115 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 1, c5 > 4.0, c3 > 11.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2116 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 4, s1 == 1, s3 == 1, c5 > 4.0, c3 > 11.0, c4 > 3.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2119 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 4, c3 > 1.0, c1 > 4.5, c2 <= 12.0, c4 <= 3.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2120 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 4, c3 > 1.0, c1 > 4.5, c2 <= 12.0, c4 <= 3.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2121 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 4, c3 > 1.0, c1 > 4.5, c2 <= 12.0, c4 > 3.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2123 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 4, c3 > 1.0, c1 > 4.5, c2 > 12.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2124 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 4, c3 > 1.0, c1 > 4.5, c2 > 12.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2125 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 4, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2127 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 > 7.0, c1 <= 8.5, c5 <= 2.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2128 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 > 7.0, c1 <= 8.5, c5 <= 2.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2129 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 > 7.0, c1 > 8.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2131 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 > 7.0, c1 > 8.5, c2 > 6.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2136 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 <= 7.0, c4 > 11.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2137 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 3, c3 <= 7.0, c4 > 11.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2138 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 <= 6.5, c2 > 3.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2140 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 <= 6.5, c2 > 3.5, c1 > 3.0, c3 > 1.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2141 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 <= 6.5, c2 > 3.5, c1 > 3.0, c3 > 1.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2143 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 > 6.5, c2 <= 2.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2145 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 > 6.5, c2 > 2.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2146 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 2, c5 > 6.5, c2 > 2.5, c4 <= 13, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2150 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 > 7.0, c4 > 2.0, c3 > 1.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2151 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 > 7.0, c4 > 2.0, c3 <= 1.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2152 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 > 7.0, c4 > 2.0, c3 <= 1.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2153 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 > 7.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2155 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 <= 7.0, c5 > 7.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2157 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 > 1.0, c2 <= 7.0, c5 <= 7.0, c3 <= 6.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2159 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 4, s3 == 1, c1 <= 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2161 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 <= 3.5, c1 <= 10, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2162 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 <= 3.5, c1 <= 10, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 <= 3.5, c1 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2164 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 > 3.5, c2 <= 3.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2166 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 > 3.5, c2 <= 3.0, c4 > 6.5, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 > 3.5, c2 > 3.0, c1 > 2.5, c3 <= 12.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2169 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 4, c5 > 3.5, c2 > 3.0, c1 > 2.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2171 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 3, c1 > 2.0, c5 <= 9.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2172 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 3, c1 > 2.0, c5 <= 9.5, c2 > 3.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2175 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 3, c1 > 2.0, c5 > 9.5, c2 <= 5.0, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2176 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 3, c1 > 2.0, c5 > 9.5, c2 <= 5.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2178 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 3, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2179 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 <= 3.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2180 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 <= 3.0, c1 > 10.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2181 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 <= 3.0, c1 > 10.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 > 3.0, c5 <= 10.5, c2 > 1.0, c1 <= 11.0, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2184 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 > 3.0, c5 <= 10.5, c2 > 1.0, c1 > 11.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2185 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 > 3.0, c5 <= 10.5, c2 > 1.0, c1 > 11.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2187 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 > 3.0, c5 > 10.5, c1 > 3.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2189 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 > 3.0, c5 > 10.5, c1 <= 3.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2190 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 2, c3 > 3.0, c5 > 10.5, c1 <= 3.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2191 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 1, c5 <= 11.0, c3 <= 1.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2197 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 1, c5 > 11.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2198 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 3, s3 == 1, c5 > 11.0, c3 > 5.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2200 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 <= 5.0, c5 <= 3.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2201 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 <= 5.0, c5 <= 3.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2202 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 <= 5.0, c5 > 3.0, c3 <= 8.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2203 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 <= 5.0, c5 > 3.0, c3 <= 8.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2204 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 <= 5.0, c5 > 3.0, c3 > 8.0, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2205 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 <= 5.0, c5 > 3.0, c3 > 8.0, c4 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2206 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 > 5.0, c3 > 11.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2207 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 > 5.0, c3 > 11.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2210 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 <= 11.0, c1 > 5.0, c3 <= 11.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2211 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 4, c2 > 11.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2213 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 <= 5.0, c2 <= 9.5, c4 > 2.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2214 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 <= 5.0, c2 <= 9.5, c4 > 2.0, c3 <= 8.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2215 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 <= 5.0, c2 <= 9.5, c4 > 2.0, c3 <= 8.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2216 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 <= 5.0, c2 <= 9.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 3, c1 <= 5.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2226 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 2, c1 <= 12.0, c2 > 1.0, c3 <= 2.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2227 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 2, c1 <= 12.0, c2 > 1.0, c3 <= 2.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2229 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 2, c1 > 12.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2230 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 2, c1 > 12.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2232 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 1, c4 > 1.0, c2 <= 13, c1 <= 1.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2233 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 1, c4 > 1.0, c2 <= 13, c1 <= 1.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2234 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 1, c4 > 1.0, c2 <= 13, c1 > 1.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2237 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 2, s3 == 1, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2238 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 4, c1 <= 12.0, c2 > 2.0, c3 <= 1.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2239 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 4, c1 <= 12.0, c2 > 2.0, c3 <= 1.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2241 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 4, c1 <= 12.0, c2 > 2.0, c3 > 1.5, c5 <= 12.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2242 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 4, c1 <= 12.0, c2 > 2.0, c3 > 1.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2244 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 4, c1 <= 12.0, c2 <= 2.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2245 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 4, c1 > 12.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 4, c1 > 12.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2247 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 <= 2.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 > 2.5, c5 <= 3.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 > 2.5, c5 > 3.5, c1 <= 12.5, c2 > 1.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2253 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 > 2.5, c5 > 3.5, c1 <= 12.5, c2 <= 1.0, c4 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2254 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 > 2.5, c5 > 3.5, c1 <= 12.5, c2 <= 1.0, c4 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2255 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 > 2.5, c5 > 3.5, c1 > 12.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 3, c3 > 2.5, c5 > 3.5, c1 > 12.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 2, c1 > 2.0, c2 > 1.0, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2258 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 2, c1 > 2.0, c2 > 1.0, c3 <= 12, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2259 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 2, c1 > 2.0, c2 > 1.0, c3 <= 12, c4 <= 11.5, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2261 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 2, c1 > 2.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2262 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 2, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2263 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 > 7.0, c3 <= 2.5, c1 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2264 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 > 7.0, c3 <= 2.5, c1 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2265 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 > 7.0, c3 > 2.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2267 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 > 7.0, c3 > 2.5, c4 <= 11.5, c1 <= 5.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2270 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 <= 7.0, c4 <= 12.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2274 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 3, s1 == 1, s3 == 1, c5 <= 7.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2275 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 <= 6.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2278 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 <= 6.5, c5 > 3.0, c1 > 3.5, c2 > 2.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2279 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 <= 6.5, c5 > 3.0, c1 > 3.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2283 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 <= 9.0, c2 <= 12.5, c4 <= 2.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2284 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 <= 9.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2285 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 > 9.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2286 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 > 9.0, c2 > 3.0, c5 <= 10.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2287 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 > 9.0, c2 > 3.0, c5 <= 10.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 4, c3 > 6.5, c1 > 9.0, c2 > 3.0, c5 > 10.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2290 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 <= 6.0, c2 <= 9.5, c1 <= 9.0, c5 <= 4.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2292 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 <= 6.0, c2 <= 9.5, c1 <= 9.0, c5 > 4.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 <= 6.0, c2 <= 9.5, c1 <= 9.0, c5 > 4.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2294 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 <= 6.0, c2 <= 9.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2297 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 > 6.0, c1 <= 10.0, c2 <= 10.5, c3 > 5.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 > 6.0, c1 <= 10.0, c2 > 10.5, c3 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2300 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 3, c4 > 6.0, c1 <= 10.0, c2 > 10.5, c3 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2302 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 > 11.5, c2 > 2.0, c1 <= 10, c4 <= 9.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 > 11.5, c2 > 2.0, c1 <= 10, c4 <= 9.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2305 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 > 11.5, c2 > 2.0, c1 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2306 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 > 11.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2307 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 <= 11.5, c2 > 1.0, c3 <= 4.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2308 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 <= 11.5, c2 > 1.0, c3 <= 4.0, c1 > 5.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2314 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 <= 11.5, c2 <= 1.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2315 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 2, c5 <= 11.5, c2 <= 1.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2316 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 <= 12.5, c5 <= 2.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 <= 12.5, c5 > 2.5, c2 <= 2.5, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2319 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 <= 12.5, c5 > 2.5, c2 <= 2.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2320 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 <= 12.5, c5 > 2.5, c2 > 2.5, c3 <= 2.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2321 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 <= 12.5, c5 > 2.5, c2 > 2.5, c3 <= 2.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2322 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 <= 12.5, c5 > 2.5, c2 > 2.5, c3 > 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2324 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 > 12.5, c5 > 2.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2326 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 4, s1 == 1, c1 > 12.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2327 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 4, c4 <= 3.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2329 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 4, c4 > 3.0, c2 > 1.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2330 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 4, c4 > 3.0, c2 > 1.0, c1 <= 12, c3 <= 3.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2331 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 4, c4 > 3.0, c2 > 1.0, c1 <= 12, c3 <= 3.0, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2334 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 4, c4 > 3.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 <= 8.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2336 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 <= 8.0, c1 > 2.0, c2 <= 2.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2337 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 <= 8.0, c1 > 2.0, c2 <= 2.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2338 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 <= 8.0, c1 > 2.0, c2 > 2.5, c4 > 2.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2340 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 <= 8.0, c1 > 2.0, c2 > 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2341 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 > 8.0, c1 <= 12.5, c3 <= 12.5, c2 <= 4.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2344 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 > 8.0, c1 <= 12.5, c3 <= 12.5, c2 > 4.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2345 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 > 8.0, c1 <= 12.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2346 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 3, c5 > 8.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2347 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 2, c2 > 1.0, c3 > 1.0, c4 <= 10.5, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2350 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 2, c2 > 1.0, c3 > 1.0, c4 > 10.5, c1 <= 7, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2351 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 2, c2 > 1.0, c3 > 1.0, c4 > 10.5, c1 <= 7, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2352 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 2, c2 > 1.0, c3 > 1.0, c4 > 10.5, c1 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2353 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 2, c2 > 1.0, c3 <= 1.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2354 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 2, c2 > 1.0, c3 <= 1.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2355 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 2, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2356 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 <= 3.5, c3 <= 10.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2358 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 <= 3.5, c3 > 10.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2359 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 <= 3.5, c3 > 10.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2360 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 > 2.0, c2 <= 1.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2361 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 > 2.0, c2 <= 1.5, c4 <= 7.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2362 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 > 2.0, c2 <= 1.5, c4 <= 7.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2363 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 > 2.0, c2 > 1.5, c5 <= 12.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2366 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 > 2.0, c2 > 1.5, c5 > 12.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2367 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 <= 2.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2368 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 <= 2.0, c5 <= 7.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2370 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 3, s1 == 1, c1 > 3.5, c3 <= 2.0, c5 <= 7.5, c2 <= 11.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2371 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 4, c1 <= 1.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2372 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 4, c1 <= 1.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 4, c1 > 1.5, c2 > 3.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2375 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 4, c1 > 1.5, c2 > 3.0, c3 > 1.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2377 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 4, c1 > 1.5, c2 > 3.0, c3 > 1.5, c4 <= 11.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2379 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 3, c4 > 3.5, c1 <= 1.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2380 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 3, c4 > 3.5, c1 <= 1.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2382 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 3, c4 > 3.5, c1 > 1.5, c5 > 3.0, c2 <= 2.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2383 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 3, c4 > 3.5, c1 > 1.5, c5 > 3.0, c2 <= 2.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2389 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 2, c2 <= 12.5, c3 > 2.0, c1 > 11.0, c4 > 2.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2390 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 2, c2 <= 12.5, c3 > 2.0, c1 > 11.0, c4 > 2.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2391 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 2, c2 <= 12.5, c3 > 2.0, c1 > 11.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2393 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 2, c2 > 12.5, c1 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2394 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 2, c2 > 12.5, c1 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2395 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 <= 8.0, c4 <= 12.5, c2 <= 9.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2396 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 <= 8.0, c4 <= 12.5, c2 <= 9.5, c3 <= 13, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2398 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 <= 8.0, c4 <= 12.5, c2 > 9.5, c3 <= 6.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2399 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 <= 8.0, c4 <= 12.5, c2 > 9.5, c3 <= 6.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2401 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 <= 8.0, c4 <= 12.5, c2 > 9.5, c3 > 6.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2402 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 <= 8.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2403 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 > 8.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2404 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 > 8.0, c2 > 2.5, c3 <= 3.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2405 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 > 8.0, c2 > 2.5, c3 <= 3.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2408 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 2, s1 == 1, c1 > 8.0, c2 > 2.5, c3 > 3.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2413 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 <= 12.0, c3 <= 5.0, c5 <= 1.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2414 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 <= 12.0, c3 > 5.0, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 > 12.0, c1 > 3.5, c5 > 2.0, c3 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2419 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 > 12.0, c1 > 3.5, c5 > 2.0, c3 <= 9, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2420 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 > 12.0, c1 > 3.5, c5 > 2.0, c3 <= 9, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 > 12.0, c1 > 3.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2422 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 4, c2 > 12.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2423 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 3, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2427 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 3, c3 > 3.0, c5 <= 12.0, c1 <= 2.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2428 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 3, c3 > 3.0, c5 <= 12.0, c1 <= 2.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2429 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 3, c3 > 3.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2432 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 > 5.5, c5 > 4.5, c1 > 3.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2434 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 > 5.5, c5 <= 4.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2435 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 <= 5.5, c5 <= 10.0, c2 <= 3.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2436 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 <= 5.5, c5 <= 10.0, c2 <= 3.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2437 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 <= 5.5, c5 <= 10.0, c2 > 3.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2439 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 <= 5.5, c5 > 10.0, c2 <= 8.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2441 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 <= 5.5, c5 > 10.0, c2 > 8.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2442 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 > 2.0, c4 <= 5.5, c5 > 10.0, c2 > 8.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2443 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 <= 2.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2444 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 <= 2.0, c1 <= 7.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2445 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 2, c3 <= 2.0, c1 <= 7.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 > 8.5, c1 <= 4.5, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 > 8.5, c1 <= 4.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2448 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 > 8.5, c1 > 4.5, c3 > 1.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2449 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 > 8.5, c1 > 4.5, c3 > 1.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2450 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 > 8.5, c1 > 4.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2451 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 <= 8.5, c1 <= 2.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 <= 8.5, c1 <= 2.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2453 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 <= 8.5, c1 > 2.5, c3 > 12, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2454 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 <= 8.5, c1 > 2.5, c3 > 12, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2456 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 <= 10.5, c4 <= 8.5, c1 > 2.5, c3 <= 12, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2457 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 > 10.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2458 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 2, s3 == 1, s1 == 1, c2 > 10.5, c1 > 8.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 4, c1 <= 10.5, c5 <= 3.5, c2 <= 2.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2462 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 4, c1 <= 10.5, c5 <= 3.5, c2 <= 2.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2463 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 4, c1 <= 10.5, c5 > 3.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2468 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 > 11.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2469 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 > 11.5, c1 <= 6.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2470 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 > 11.5, c1 <= 6.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2471 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 <= 11.5, c4 <= 11.0, c1 <= 12.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2475 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 <= 11.5, c4 > 11.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2477 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 3, c2 <= 11.5, c4 > 11.0, c5 > 7.5, c3 <= 8.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2480 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 <= 6.5, c1 <= 6.0, c2 <= 9.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 <= 6.5, c1 <= 6.0, c2 <= 9.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2482 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 <= 6.5, c1 > 6.0, c5 <= 4.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2483 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 <= 6.5, c1 > 6.0, c5 <= 4.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2485 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 > 6.5, c3 <= 12.0, c1 <= 2.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2486 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 > 6.5, c3 <= 12.0, c1 <= 2.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2489 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 > 6.5, c3 <= 12.0, c1 > 2.5, c2 <= 1.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2490 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 2, c4 > 6.5, c3 <= 12.0, c1 > 2.5, c2 <= 1.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2492 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 1, c3 <= 4.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2493 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 1, c3 <= 4.5, c1 > 2.5, c4 <= 4.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2498 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 4, s3 == 1, c3 > 4.5, c1 > 9.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2499 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 > 2.0, c4 <= 3.0, c1 <= 6.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2500 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 > 2.0, c4 <= 3.0, c1 <= 6.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2501 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 > 2.0, c4 <= 3.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2503 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 > 2.0, c4 > 3.0, c1 <= 12.0, c2 > 3.5, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2505 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 > 2.0, c4 > 3.0, c1 > 12.0, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2506 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 > 2.0, c4 > 3.0, c1 > 12.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 4, c3 <= 2.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2509 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 3, c1 <= 10.5, c5 <= 5.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2510 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 3, c1 <= 10.5, c5 <= 5.0, c4 > 2.5, c2 <= 6.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2511 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 3, c1 <= 10.5, c5 <= 5.0, c4 > 2.5, c2 <= 6.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2512 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 3, c1 <= 10.5, c5 <= 5.0, c4 > 2.5, c2 > 6.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2516 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 3, c1 > 10.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2517 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 3, c1 > 10.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2519 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 <= 4.0, c1 <= 6.0, c2 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2520 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 <= 4.0, c1 <= 6.0, c2 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2523 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 > 4.0, c1 > 1.0, c2 <= 12.0, c3 > 12.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2524 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 > 4.0, c1 > 1.0, c2 <= 12.0, c3 > 12.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2526 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 > 4.0, c1 <= 1.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2527 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 2, c5 > 4.0, c1 <= 1.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2529 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 1, c1 <= 9.5, c2 > 4.0, c4 <= 3.5, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2530 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 1, c1 <= 9.5, c2 > 4.0, c4 <= 3.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2532 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 1, c1 > 9.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2533 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 3, s3 == 1, c1 > 9.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2534 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 4, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2535 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2538 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 > 1.0, c5 > 12.0, c4 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2539 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 4, c1 > 1.5, c2 > 3.0, c3 > 1.0, c5 > 12.0, c4 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2542 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 > 13, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2545 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 <= 12.5, c1 <= 12.0, c2 <= 2.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2546 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 <= 12.5, c1 <= 12.0, c2 <= 2.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2547 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 <= 12.5, c1 > 12.0, c2 <= 10.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2548 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 <= 12.5, c1 > 12.0, c2 <= 10.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2549 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 <= 12.5, c1 > 12.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2550 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 > 12.5, c1 <= 9.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2551 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 > 12.5, c1 <= 9.5, c2 <= 8.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2552 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 > 12.5, c1 <= 9.5, c2 <= 8.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2553 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 3, c3 <= 13, c5 > 12.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2555 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 2, c4 > 1.0, c1 > 1.0, c2 > 2.0, c3 <= 12.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2556 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 2, c4 > 1.0, c1 > 1.0, c2 > 2.0, c3 > 12.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 2, c4 > 1.0, c1 > 1.0, c2 > 2.0, c3 > 12.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2559 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 2, c4 > 1.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2560 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 2, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2561 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 1, c4 > 1.0, c3 <= 4.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2563 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 1, c4 > 1.0, c3 > 4.0, c1 <= 3.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2564 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 1, c4 > 1.0, c3 > 4.0, c1 <= 3.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2568 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 2, s3 == 1, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2569 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 4, c1 > 1.0, c4 > 2.0, c2 > 2.0, c3 > 11.5, c5 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2570 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 4, c1 > 1.0, c4 > 2.0, c2 > 2.0, c3 > 11.5, c5 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2572 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 4, c1 > 1.0, c4 > 2.0, c2 > 2.0, c3 <= 11.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2574 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 4, c1 > 1.0, c4 <= 2.0, c2 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2575 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 4, c1 > 1.0, c4 <= 2.0, c2 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 4, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2577 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 3, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2578 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 3, c5 > 1.5, c1 > 1.0, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2583 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 3, c5 > 1.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2590 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 > 1.5, c5 > 9.0, c1 <= 3.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2593 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 2, c2 > 1.5, c5 > 9.0, c1 > 3.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2596 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 1, c1 > 1.5, c5 <= 3.5, c2 <= 8.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2597 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 1, c1 > 1.5, c5 <= 3.5, c2 <= 8.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 1, c1 > 1.5, c5 > 3.5, c2 > 1.0, c3 > 7.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2600 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 1, c1 > 1.5, c5 > 3.5, c2 > 1.0, c3 > 7.5, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2601 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 4, s5 == 1, s2 == 1, s1 == 1, s3 == 1, c1 > 1.5, c5 > 3.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2603 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c3 <= 7.5, c1 <= 5.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2605 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c3 <= 7.5, c1 > 5.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2606 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c3 > 7.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2609 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c3 > 7.5, c4 <= 11.5, c5 <= 7.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2610 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c3 > 7.5, c4 <= 11.5, c5 <= 7.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2611 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 <= 1.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2612 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 4, c2 <= 1.0, c1 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2613 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 3, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2614 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 3, c5 <= 12, c1 <= 4.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2615 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 3, c5 <= 12, c1 <= 4.0, c2 > 7.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 3, c5 <= 12, c1 > 4.0, c4 > 4.5, c2 > 6.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2621 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 2, c3 <= 10.5, c5 <= 12.5, c2 > 2.0, c4 > 11.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2623 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 2, c3 <= 10.5, c5 <= 12.5, c2 > 2.0, c4 <= 11.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2626 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 2, c3 <= 10.5, c5 > 12.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2627 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 2, c3 <= 10.5, c5 > 12.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2630 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 1, c3 <= 12.5, c4 <= 1.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2632 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 1, c3 <= 12.5, c4 > 1.5, c2 <= 12.5, c5 <= 9.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2634 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 1, c3 <= 12.5, c4 > 1.5, c2 <= 12.5, c5 > 9.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2636 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 4, s5 == 1, c3 <= 12.5, c4 > 1.5, c2 > 12.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2642 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 <= 8.5, c3 > 5.0, c2 <= 5.5, c4 <= 10.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2643 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 <= 8.5, c3 > 5.0, c2 <= 5.5, c4 <= 10.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2644 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 <= 8.5, c3 > 5.0, c2 <= 5.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2645 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 <= 8.5, c3 > 5.0, c2 > 5.5, c4 <= 3.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 <= 8.5, c3 > 5.0, c2 > 5.5, c4 <= 3.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2647 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 4, c1 <= 8.5, c3 > 5.0, c2 > 5.5, c4 > 3.5, c5 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2649 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 3, c1 <= 12.5, c3 > 11.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2653 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 3, c1 <= 12.5, c3 <= 11.5, c4 <= 6.5, c2 > 2.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2655 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 3, c1 <= 12.5, c3 <= 11.5, c4 > 6.5, c2 <= 11.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2656 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 3, c1 <= 12.5, c3 <= 11.5, c4 > 6.5, c2 <= 11.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2658 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 2, c5 > 2.0, c4 <= 12.0, c2 <= 3.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2664 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 2, c5 <= 2.0, c1 <= 9.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2665 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 2, c5 <= 2.0, c1 <= 9.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2666 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 2, c5 <= 2.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2667 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 > 2.0, c1 <= 12.0, c5 <= 3.0, c3 > 2.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 > 2.0, c1 <= 12.0, c5 <= 3.0, c3 > 2.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2669 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 > 2.0, c1 <= 12.0, c5 <= 3.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2670 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 > 2.0, c1 <= 12.0, c5 > 3.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2671 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 > 2.0, c1 <= 12.0, c5 > 3.0, c3 > 3.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2673 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 > 2.0, c1 > 12.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2674 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 > 2.0, c1 > 12.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2675 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 <= 2.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2676 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 3, s5 == 1, c2 <= 2.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2677 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 4, c4 <= 3.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2678 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 4, c4 <= 3.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2681 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 4, c4 > 3.0, c1 > 3.0, c5 > 4.5, c2 > 9.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 4, c4 > 3.0, c1 > 3.0, c5 > 4.5, c2 > 9.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2683 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 4, c4 > 3.0, c1 > 3.0, c5 > 4.5, c2 <= 9.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2685 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2688 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 > 1.5, c2 > 2.0, c1 <= 12.0, c4 > 7.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 > 1.5, c2 > 2.0, c1 > 12.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2694 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 3, c5 > 1.5, c2 <= 2.0, c1 <= 7.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2695 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 2, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2700 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 2, c5 <= 13, c2 <= 2.0, c1 <= 10.0, c3 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 2, c5 <= 13, c2 <= 2.0, c1 <= 10.0, c3 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2702 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 2, c5 <= 13, c2 <= 2.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2703 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2705 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 > 1.5, c4 <= 6.5, c1 > 3.0, c2 <= 6.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2706 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 > 1.5, c4 <= 6.5, c1 > 3.0, c2 <= 6.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2708 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 > 1.5, c4 > 6.5, c3 > 1.0, c1 <= 2.5, c2 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2709 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 > 1.5, c4 > 6.5, c3 > 1.0, c1 <= 2.5, c2 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2710 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 > 1.5, c4 > 6.5, c3 > 1.0, c1 > 2.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2712 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 2, s5 == 1, c5 > 1.5, c4 > 6.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2718 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 > 9.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2720 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 > 9.0, c5 > 4.0, c2 > 3.0, c3 <= 6.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2721 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 > 9.0, c5 > 4.0, c2 > 3.0, c3 <= 6.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2722 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 4, c1 > 9.0, c5 > 4.0, c2 > 3.0, c3 > 6.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2725 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 > 11.5, c1 > 7.5, c3 <= 6.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2726 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 > 1.0, c2 > 11.5, c1 > 7.5, c3 <= 6.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2734 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 3, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2735 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 <= 10.0, c5 <= 3.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2738 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 <= 10.0, c5 > 3.0, c1 <= 11.0, c2 > 5.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2739 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 <= 10.0, c5 > 3.0, c1 <= 11.0, c2 <= 5.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2741 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 <= 10.0, c5 > 3.0, c1 > 11.0, c2 <= 4.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2742 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 <= 10.0, c5 > 3.0, c1 > 11.0, c2 <= 4.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2744 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 > 10.0, c2 <= 3.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2745 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 > 10.0, c2 <= 3.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2746 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 > 10.0, c2 > 3.0, c1 > 3.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2748 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 2, c3 > 10.0, c2 > 3.0, c1 <= 3.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2750 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 <= 6.0, c2 <= 4.5, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2752 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 <= 6.0, c2 <= 4.5, c1 <= 12, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2753 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 <= 6.0, c2 > 4.5, c3 <= 9.5, c5 <= 10.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2754 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 <= 6.0, c2 > 4.5, c3 <= 9.5, c5 <= 10.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2759 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 4, s3 == 1, s5 == 1, c4 > 6.0, c1 > 2.0, c3 > 4.5, c2 <= 11.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2762 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 > 1.0, c4 <= 7.5, c2 > 4.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2763 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 > 1.0, c4 <= 7.5, c2 > 4.0, c1 > 4.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2765 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 > 1.0, c4 <= 7.5, c2 <= 4.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2766 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 > 1.0, c4 <= 7.5, c2 <= 4.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2767 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 > 1.0, c4 > 7.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2769 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 > 1.0, c4 > 7.5, c1 <= 13, c2 > 6.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2771 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 4, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2773 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 > 2.0, c1 <= 3.5, c2 > 4.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2774 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 > 2.0, c1 <= 3.5, c2 <= 4.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2775 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 > 2.0, c1 <= 3.5, c2 <= 4.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2776 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 > 2.0, c1 > 3.5, c2 > 2.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2779 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 > 2.0, c1 > 3.5, c2 <= 2.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2780 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 > 2.0, c1 > 3.5, c2 <= 2.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2781 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 3, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2782 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 <= 4.0, c1 <= 3.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 <= 4.0, c1 <= 3.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2784 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 <= 4.0, c1 > 3.5, c3 > 2.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2786 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 <= 4.0, c1 > 3.5, c3 <= 2.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2787 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 <= 4.0, c1 > 3.5, c3 <= 2.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2788 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 > 4.0, c3 <= 1.5, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2789 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 > 4.0, c3 <= 1.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2790 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 > 4.0, c3 > 1.5, c4 <= 8.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2794 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 > 4.0, c3 > 1.5, c4 > 8.5, c1 <= 12.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2795 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 2, c2 > 4.0, c3 > 1.5, c4 > 8.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2796 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 1, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2797 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 1, c5 <= 13, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2798 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 1, c5 <= 13, c2 <= 13, c4 <= 10.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 4, s3 == 1, c5 <= 13, c2 <= 13, c4 <= 10.5, c1 <= 11.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2802 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 <= 6.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 <= 6.0, c2 > 1.5, c3 <= 3.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2804 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 <= 6.0, c2 > 1.5, c3 <= 3.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2805 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 <= 6.0, c2 > 1.5, c3 > 3.5, c1 <= 12.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2806 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 <= 6.0, c2 > 1.5, c3 > 3.5, c1 <= 12.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2807 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 <= 6.0, c2 > 1.5, c3 > 3.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2808 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 > 6.0, c5 <= 8.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2809 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 > 6.0, c5 <= 8.0, c1 > 5.0, c3 > 1.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 > 6.0, c5 <= 8.0, c1 > 5.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2814 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 > 6.0, c5 > 8.0, c2 > 8.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2815 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 4, c4 > 6.0, c5 > 8.0, c2 > 8.5, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2817 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 3, c1 <= 6.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2819 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 3, c1 > 6.0, c4 <= 4.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2821 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 3, c1 > 6.0, c4 > 4.0, c2 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2822 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 > 7.0, c4 <= 3.0, c1 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2823 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 > 7.0, c4 <= 3.0, c1 <= 9, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2824 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 > 7.0, c4 <= 3.0, c1 <= 9, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 > 7.0, c4 > 3.0, c1 > 5.5, c3 <= 3.5, c5 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2826 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 > 7.0, c4 > 3.0, c1 > 5.5, c3 <= 3.5, c5 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2827 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 > 7.0, c4 > 3.0, c1 > 5.5, c3 > 3.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 > 7.0, c4 > 3.0, c1 > 5.5, c3 > 3.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2830 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 > 7.0, c4 > 3.0, c1 <= 5.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2831 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 <= 7.0, c1 > 2.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2834 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 <= 7.0, c1 <= 2.0, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 2, c2 <= 7.0, c1 <= 2.0, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2836 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 1, c1 <= 1.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2838 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 1, c1 > 1.5, c4 <= 9.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 1, c1 > 1.5, c4 <= 9.0, c3 <= 13, c5 <= 3.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2841 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 3, s3 == 1, c1 > 1.5, c4 <= 9.0, c3 <= 13, c5 <= 3.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 4, c1 <= 12.5, c2 > 1.0, c4 <= 12.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2847 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 4, c1 <= 12.5, c2 > 1.0, c4 > 12.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2848 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 4, c1 <= 12.5, c2 > 1.0, c4 > 12.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2849 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 4, c1 <= 12.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2850 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 4, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2851 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 3, c4 <= 3.0, c3 <= 9.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2852 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 3, c4 <= 3.0, c3 <= 9.0, c1 > 4.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2853 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 3, c4 <= 3.0, c3 <= 9.0, c1 > 4.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2856 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 3, c4 > 3.0, c1 <= 12.5, c5 > 6.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2858 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 3, c4 > 3.0, c1 <= 12.5, c5 > 6.5, c2 <= 13, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 2, c3 > 2.0, c1 > 1.5, c2 > 2.0, c4 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2864 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 2, c3 > 2.0, c1 > 1.5, c2 <= 2.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2865 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 2, c3 > 2.0, c1 > 1.5, c2 <= 2.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2866 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 2, c3 <= 2.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2868 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 1, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 1, c4 <= 13, c2 <= 11.0, c5 <= 13, c1 > 9.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 2, s3 == 1, c4 <= 13, c2 > 11.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2877 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 <= 10.0, c2 <= 4.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2879 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 <= 10.0, c2 > 4.0, c5 > 3.5, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 > 10.0, c2 <= 8.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2883 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 4, c3 > 10.0, c2 <= 8.0, c1 > 4.5, c4 <= 6.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2887 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 <= 9.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2889 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 <= 9.0, c3 > 2.5, c4 > 1.0, c2 > 5.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2891 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 <= 9.0, c3 > 2.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2892 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 > 9.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2894 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 > 9.0, c1 > 1.5, c3 <= 4.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 3, c5 > 9.0, c1 > 1.5, c3 > 4.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2897 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 <= 3.0, c1 <= 9.0, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2898 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 <= 3.0, c1 <= 9.0, c2 > 9.0, c3 > 3.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2899 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 <= 3.0, c1 <= 9.0, c2 > 9.0, c3 > 3.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2900 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 <= 3.0, c1 <= 9.0, c2 > 9.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2902 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 <= 4.0, c1 > 4.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2904 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 <= 4.0, c1 <= 4.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2905 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 <= 4.0, c1 <= 4.5, c2 > 3.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2906 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 <= 4.0, c1 <= 4.5, c2 > 3.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2907 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 > 4.0, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2910 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 2, c5 > 3.0, c3 > 4.0, c2 <= 12, c1 > 9.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2913 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 <= 9.0, c2 <= 12.5, c1 > 6.5, c4 <= 6.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2914 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 <= 9.0, c2 <= 12.5, c1 > 6.5, c4 <= 6.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2917 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 <= 9.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2918 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 > 9.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2919 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 > 9.0, c2 > 3.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2920 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 > 9.0, c2 > 3.5, c4 > 2.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 > 9.0, c2 > 3.5, c4 > 2.0, c5 > 3.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2922 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 3, s5 == 1, s3 == 1, c3 > 9.0, c2 > 3.5, c4 > 2.0, c5 > 3.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2924 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 <= 9.5, c1 > 3.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2925 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 <= 9.5, c1 > 3.0, c2 > 4.5, c5 <= 7.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2927 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 <= 9.5, c1 > 3.0, c2 > 4.5, c5 > 7.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2928 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 <= 9.5, c1 > 3.0, c2 > 4.5, c5 > 7.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2930 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 > 9.5, c4 <= 6.5, c1 > 4.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2931 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 > 9.5, c4 <= 6.5, c1 > 4.5, c2 > 5.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2932 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 > 9.5, c4 <= 6.5, c1 > 4.5, c2 > 5.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2933 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 > 9.5, c4 > 6.5, c1 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2934 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 > 9.5, c4 > 6.5, c1 <= 9, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2935 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 4, c3 > 9.5, c4 > 6.5, c1 <= 9, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 <= 2.0, c2 > 5.0, c5 <= 3.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2939 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 <= 2.0, c2 > 5.0, c5 <= 3.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2941 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 > 2.0, c4 <= 3.5, c2 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2942 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 > 2.0, c4 <= 3.5, c2 <= 11, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2943 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 > 2.0, c4 <= 3.5, c2 <= 11, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2944 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 3, c1 > 3.5, c3 > 2.0, c4 > 3.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2947 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 2, c1 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2948 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 2, c1 > 2.0, c5 > 1.5, c2 > 8.5, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2952 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 2, c1 > 2.0, c5 > 1.5, c2 <= 8.5, c3 <= 11.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2955 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 2, c1 <= 2.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2956 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 1, c2 <= 12.5, c1 > 1.0, c3 <= 12.5, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2959 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 1, c2 <= 12.5, c1 > 1.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2960 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 1, c2 <= 12.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2961 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 4, s3 == 1, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2962 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 4, c3 <= 8.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2966 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 4, c3 <= 8.0, c1 > 3.0, c2 > 11.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2968 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 4, c3 > 8.0, c5 > 5.0, c1 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2970 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 4, c3 > 8.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2972 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 <= 3.5, c4 <= 6.5, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2973 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 <= 3.5, c4 <= 6.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#2975 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 > 3.5, c1 > 8.5, c2 > 3.0, c3 <= 11.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2977 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 > 3.5, c1 > 8.5, c2 > 3.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2978 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 > 3.5, c1 <= 8.5, c3 > 2.0, c2 <= 8.0, c4 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2979 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 > 3.5, c1 <= 8.5, c3 > 2.0, c2 <= 8.0, c4 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 > 3.5, c1 <= 8.5, c3 > 2.0, c2 > 8.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2982 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 3, c5 > 3.5, c1 <= 8.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2983 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 2, c5 > 1.0, c2 <= 1.5, c1 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2984 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 2, c5 > 1.0, c2 <= 1.5, c1 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2988 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 2, c5 > 1.0, c2 > 1.5, c1 <= 13, c3 > 4.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2990 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 2, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2993 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 1, c5 > 1.0, c1 <= 12.5, c2 > 1.0, c3 > 12.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#2995 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 1, c5 > 1.0, c1 <= 12.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#2997 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 1, c5 > 1.0, c1 > 12.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2998 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 3, s3 == 1, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#2999 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 <= 7.5, c1 > 1.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3000 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 <= 7.5, c1 > 1.0, c5 > 1.5, c3 <= 4.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3003 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 <= 7.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3004 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 > 7.5, c2 <= 6.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3005 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 > 7.5, c2 <= 6.5, c1 <= 9.0, c3 <= 8.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3006 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 > 7.5, c2 <= 6.5, c1 <= 9.0, c3 <= 8.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3007 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 > 7.5, c2 <= 6.5, c1 <= 9.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3008 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 > 7.5, c2 > 6.5, c3 <= 3.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3009 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 > 7.5, c2 > 6.5, c3 <= 3.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 4, c4 > 7.5, c2 > 6.5, c3 > 3.0, c1 > 4.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3013 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 3, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3014 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 3, c3 > 1.5, c4 > 1.0, c2 <= 12.0, c1 > 1.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3017 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 3, c3 > 1.5, c4 > 1.0, c2 > 12.0, c1 <= 8.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3018 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 3, c3 > 1.5, c4 > 1.0, c2 > 12.0, c1 <= 8.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3019 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 3, c3 > 1.5, c4 > 1.0, c2 > 12.0, c1 > 8.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3020 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 3, c3 > 1.5, c4 > 1.0, c2 > 12.0, c1 > 8.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3021 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 3, c3 > 1.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3022 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 <= 3.5, c3 <= 10.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3024 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 <= 3.5, c3 > 10.0, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3025 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 <= 3.5, c3 > 10.0, c1 <= 2.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3026 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 <= 3.5, c3 > 10.0, c1 <= 2.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3027 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 > 3.5, c4 <= 9.5, c1 <= 1.5, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3028 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 > 3.5, c4 <= 9.5, c1 <= 1.5, c3 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3030 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 > 3.5, c4 <= 9.5, c1 > 1.5, c3 > 3.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3032 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 > 3.5, c4 > 9.5, c1 > 1.0, c5 <= 10.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3035 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 2, c2 > 3.5, c4 > 9.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 > 11.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3037 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 > 11.5, c3 > 2.5, c1 > 7.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3040 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 <= 11.0, c1 <= 1.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3041 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 <= 11.0, c1 <= 1.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3044 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 <= 11.0, c1 > 1.5, c3 <= 1.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3045 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 <= 11.0, c1 > 1.5, c3 <= 1.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3047 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 > 11.0, c1 > 7.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3048 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 > 11.0, c1 <= 7.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3049 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 2, s3 == 1, c2 <= 11.5, c4 > 11.0, c1 <= 7.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3050 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 4, c2 > 1.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3053 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 4, c2 > 1.0, c3 <= 13, c1 > 1.0, c4 <= 2.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3054 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 4, c2 > 1.0, c3 <= 13, c1 > 1.0, c4 <= 2.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3056 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 4, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3063 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3064 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 <= 11.0, c2 <= 11.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3065 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 <= 11.0, c2 <= 11.0, c5 > 3.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3070 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 > 11.0, c2 <= 5.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3071 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 > 11.0, c2 <= 5.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3073 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 2, c1 > 2.5, c3 > 11.0, c2 > 5.0, c4 <= 9.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3075 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 <= 11.0, c1 > 13, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3076 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 <= 11.0, c1 > 13, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 <= 11.0, c1 <= 13, c2 > 1.0, c4 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3080 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 <= 11.0, c1 <= 13, c2 > 1.0, c4 <= 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#3082 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 > 11.0, c4 <= 5.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3083 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 2, s5 == 1, s3 == 1, c3 > 11.0, c4 <= 5.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3085 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 <= 8.5, c3 <= 8.5, c2 <= 10.5, c4 > 1.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3087 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 <= 8.5, c3 <= 8.5, c2 <= 10.5, c4 <= 1.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 <= 8.5, c3 <= 8.5, c2 <= 10.5, c4 <= 1.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3090 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 <= 8.5, c3 > 8.5, c1 <= 4.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3091 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 <= 8.5, c3 > 8.5, c1 <= 4.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3093 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 > 8.5, c3 <= 9.0, c2 <= 8.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3094 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 > 8.5, c3 <= 9.0, c2 <= 8.5, c1 <= 7.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3095 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 > 8.5, c3 <= 9.0, c2 <= 8.5, c1 <= 7.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3098 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 4, c5 > 8.5, c3 > 9.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3099 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3101 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 <= 4.0, c5 <= 5.0, c1 <= 8.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3103 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 <= 4.0, c5 <= 5.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3104 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 > 4.0, c5 <= 5.0, c3 > 2.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3106 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 > 4.0, c5 <= 5.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3107 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 > 4.0, c5 > 5.0, c1 > 8.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3108 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 > 4.0, c5 > 5.0, c1 > 8.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3109 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 3, c4 <= 12, c2 > 4.0, c5 > 5.0, c1 <= 8.0, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3114 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 2, c1 <= 12.0, c5 > 2.0, c2 > 1.5, c3 <= 1.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3115 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 2, c1 <= 12.0, c5 > 2.0, c2 > 1.5, c3 <= 1.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3117 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 2, c1 <= 12.0, c5 <= 2.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3119 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 2, c1 > 12.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3120 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 <= 6.5, c1 <= 4.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3121 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 <= 6.5, c1 <= 4.5, c2 > 2.5, c4 > 2.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 <= 6.5, c1 <= 4.5, c2 > 2.5, c4 > 2.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3123 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 <= 6.5, c1 <= 4.5, c2 > 2.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3125 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 <= 6.5, c1 > 4.5, c5 > 1.0, c2 > 5.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3127 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 <= 6.5, c1 > 4.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3128 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 > 6.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3129 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 > 6.5, c2 > 1.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 4, s5 == 1, c3 > 6.5, c2 > 1.5, c5 > 1.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3134 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 4, c4 > 3.0, c1 > 13, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3135 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 4, c4 > 3.0, c1 > 13, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3140 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 4, c4 > 3.0, c1 <= 13, c3 <= 1.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3141 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 4, c4 > 3.0, c1 <= 13, c3 <= 1.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3142 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 <= 6.5, c4 > 7.0, c2 <= 5.5, c3 <= 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3143 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 <= 6.5, c4 > 7.0, c2 <= 5.5, c3 > 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3144 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 <= 6.5, c4 > 7.0, c2 > 5.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3145 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 <= 6.5, c4 > 7.0, c2 > 5.5, c3 > 9.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3146 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 <= 6.5, c4 > 7.0, c2 > 5.5, c3 > 9.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3148 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 <= 6.5, c4 <= 7.0, c2 <= 5.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 <= 6.5, c4 <= 7.0, c2 <= 5.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3150 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 > 6.5, c2 > 1.0, c5 <= 4.5, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3151 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 > 6.5, c2 > 1.0, c5 <= 4.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3153 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 3, c1 > 6.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3155 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 <= 11.0, c1 > 1.5, c2 <= 10.5, c3 <= 9.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3157 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 <= 11.0, c1 > 1.5, c2 <= 10.5, c3 > 9.5, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3160 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 <= 11.0, c1 > 1.5, c2 > 10.5, c3 <= 4.5, c4 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3161 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 <= 11.0, c1 > 1.5, c2 > 10.5, c3 <= 4.5, c4 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3162 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 > 11.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 > 11.0, c1 <= 11.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3164 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 > 11.0, c1 <= 11.5, c2 <= 6.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3165 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 2, c5 > 11.0, c1 <= 11.5, c2 <= 6.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3166 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 1, c1 <= 6.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3167 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 1, c1 <= 6.0, c5 <= 7.5, c3 <= 11.0, c2 <= 9.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3170 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 1, c1 <= 6.0, c5 <= 7.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3171 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 1, c1 > 6.0, c5 > 7.0, c3 <= 6.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3172 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 3, s5 == 1, c1 > 6.0, c5 > 7.0, c3 <= 6.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 <= 6.5, c1 > 4.5, c5 <= 3.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 <= 6.5, c1 > 4.5, c5 <= 3.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3179 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 <= 6.5, c1 > 4.5, c5 > 3.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3182 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 > 2.0, c2 > 6.5, c5 <= 9.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3186 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 <= 2.0, c2 <= 5.0, c1 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3187 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 <= 2.0, c2 <= 5.0, c1 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3189 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 <= 2.0, c2 > 5.0, c1 > 3.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3190 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 <= 2.0, c2 > 5.0, c1 > 3.0, c4 > 1.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3191 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 4, c3 <= 2.0, c2 > 5.0, c1 > 3.0, c4 > 1.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3193 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 <= 2.5, c2 > 5.0, c1 > 2.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3195 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 <= 2.5, c2 > 5.0, c1 > 2.0, c3 > 5.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3197 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 <= 3.0, c1 <= 12.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3198 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 <= 3.0, c1 <= 12.5, c3 > 1.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3199 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 <= 3.0, c1 <= 12.5, c3 > 1.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3200 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 <= 3.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3201 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 > 3.0, c3 <= 4.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3203 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 > 3.0, c3 <= 4.5, c1 <= 11.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3204 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 3, c5 > 2.5, c2 > 3.0, c3 > 4.5, c1 > 1.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3207 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 <= 10.5, c2 <= 3.0, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3208 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 <= 10.5, c2 <= 3.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3211 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 <= 10.5, c2 > 3.0, c3 <= 1.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3212 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 <= 10.5, c2 > 3.0, c3 <= 1.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3213 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 > 10.5, c1 > 7.0, c3 <= 6.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3216 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 > 1.0, c4 > 10.5, c1 <= 7.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3218 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 <= 1.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3219 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 <= 1.0, c1 <= 8.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3220 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 2, c5 <= 1.0, c1 <= 8.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3222 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 > 8.5, c1 <= 3.5, c2 <= 4.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3223 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 > 8.5, c1 <= 3.5, c2 <= 4.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3227 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 <= 8.5, c3 > 3.5, c2 > 1.0, c1 <= 5.5, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3229 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 <= 8.5, c3 > 3.5, c2 > 1.0, c1 > 5.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3231 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 2, s5 == 1, c5 <= 8.5, c3 > 3.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3232 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 <= 8.0, c2 <= 3.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3233 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 <= 8.0, c2 <= 3.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3236 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 <= 8.0, c2 > 3.0, c5 <= 9.5, c1 <= 5.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3237 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 <= 8.0, c2 > 3.0, c5 <= 9.5, c1 <= 5.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3238 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 <= 8.0, c2 > 3.0, c5 > 9.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3239 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 4, c4 <= 8.0, c2 > 3.0, c5 > 9.5, c1 > 3.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3243 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 > 1.0, c2 <= 10.0, c4 <= 3.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3244 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 > 1.0, c2 <= 10.0, c4 <= 3.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3246 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 > 1.0, c2 <= 10.0, c4 > 3.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3248 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 > 1.0, c2 > 10.0, c4 <= 8.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3251 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 <= 1.0, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 > 1.0, c1 <= 1.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3253 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 <= 1.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3254 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 3, c3 <= 1.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3255 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 <= 1.5, c1 <= 10.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3256 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 <= 1.5, c1 <= 10.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 <= 1.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3258 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 > 1.5, c1 <= 12.5, c3 > 2.0, c2 <= 12.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3261 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 > 1.5, c1 <= 12.5, c3 <= 2.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3262 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 > 1.5, c1 <= 12.5, c3 <= 2.0, c2 <= 8.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3263 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 2, c4 > 1.5, c1 <= 12.5, c3 <= 2.0, c2 <= 8.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3266 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 <= 4.0, c4 <= 12.0, c1 <= 7.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 > 4.0, c1 > 2.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3271 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 > 4.0, c1 > 2.5, c3 <= 9.5, c4 <= 5.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3272 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 4, s2 == 1, s3 == 1, s5 == 1, c5 > 4.0, c1 > 2.5, c3 <= 9.5, c4 <= 5.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3275 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 <= 2.5, c2 > 7.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 <= 2.5, c2 > 7.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3277 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 <= 2.5, c2 <= 7.0, c1 <= 9.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3278 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 <= 2.5, c2 <= 7.0, c1 <= 9.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3280 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 > 2.5, c1 <= 2.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3283 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 4, c5 > 2.5, c1 > 2.0, c2 > 13, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3288 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 <= 4.0, c5 <= 3.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3291 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 > 4.0, c1 > 2.0, c2 > 1.0, c3 > 5.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3292 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 > 4.0, c1 > 2.0, c2 > 1.0, c3 <= 5.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3295 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 3, c4 > 4.0, c1 > 2.0, c2 <= 1.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3297 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 > 1.0, c1 > 2.0, c2 > 1.0, c3 <= 1.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3298 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 > 1.0, c1 > 2.0, c2 > 1.0, c3 <= 1.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3301 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 > 1.0, c1 > 2.0, c2 <= 1.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3302 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 > 1.0, c1 > 2.0, c2 <= 1.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 > 1.0, c1 <= 2.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3304 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 > 1.0, c1 <= 2.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3305 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 2, c4 <= 1.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3311 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 <= 8.0, c5 > 12.0, c1 <= 1.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 <= 8.0, c5 > 12.0, c1 <= 1.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 > 8.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3314 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 > 8.0, c1 > 1.5, c2 > 1.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3316 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 4, s5 == 1, c3 > 1.0, c4 > 8.0, c1 > 1.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3320 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 4, c1 <= 4.0, c2 > 3.5, c3 <= 7.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3323 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 4, c1 > 4.0, c4 > 4.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3326 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 3, c2 <= 9.0, c1 > 5.5, c5 <= 4.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3329 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 3, c2 <= 9.0, c1 > 5.5, c5 > 4.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3330 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 3, c2 <= 9.0, c1 <= 5.5, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3331 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 3, c2 <= 9.0, c1 <= 5.5, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3336 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 2, c2 <= 8.5, c5 > 1.0, c4 > 6.0, c1 > 2.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3338 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 2, c2 <= 8.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3340 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 1, c3 > 2.0, c5 > 2.0, c2 > 6.5, c4 > 11.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3341 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 1, c3 > 2.0, c5 > 2.0, c2 > 6.5, c4 > 11.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3343 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 1, c3 > 2.0, c5 > 2.0, c2 > 6.5, c4 <= 11.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3345 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 1, c3 <= 2.0, c2 <= 4.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3346 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 3, s5 == 1, c3 <= 2.0, c2 <= 4.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3350 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 > 2.0, c5 <= 11.0, c2 > 7.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3351 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 > 2.0, c5 <= 11.0, c2 > 7.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3352 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 > 2.0, c5 > 11.0, c1 > 2.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3355 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 <= 2.0, c1 > 5.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3356 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 <= 2.0, c1 > 5.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3357 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 <= 11.0, c4 <= 2.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3358 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 > 11.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3360 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 4, c3 > 11.0, c1 > 1.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#3361 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 <= 5.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3362 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 <= 5.0, c1 > 4.0, c2 <= 11.0, c3 <= 12.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3364 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 <= 5.0, c1 > 4.0, c2 <= 11.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3366 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 > 5.0, c4 <= 2.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3367 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 > 5.0, c4 <= 2.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3368 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 > 5.0, c4 > 2.5, c2 <= 1.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3369 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 > 5.0, c4 > 2.5, c2 <= 1.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3371 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 > 5.0, c4 > 2.5, c2 > 1.5, c1 <= 3.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3372 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 3, c5 > 5.0, c4 > 2.5, c2 > 1.5, c1 > 3.5, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3375 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 <= 3.0, c2 > 7.0, c1 <= 7.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3376 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 <= 3.0, c2 > 7.0, c1 <= 7.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3378 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 > 3.0, c1 > 1.0, c2 > 2.0, c4 <= 2.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3379 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 > 3.0, c1 > 1.0, c2 > 2.0, c4 <= 2.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3380 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 > 3.0, c1 > 1.0, c2 > 2.0, c4 > 2.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3382 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 > 3.0, c1 > 1.0, c2 <= 2.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3383 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 2, c3 > 3.0, c1 > 1.0, c2 <= 2.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 1, c5 <= 10.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3387 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 1, c5 <= 10.5, c1 <= 13, c2 <= 12.5, c4 <= 3.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3391 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 2, s5 == 1, c5 <= 10.5, c1 <= 13, c2 > 12.5, c3 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3393 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 <= 10.5, c1 > 13, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3394 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 <= 10.5, c1 > 13, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3398 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 <= 10.5, c1 <= 13, c3 <= 11.0, c4 > 9.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3400 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 <= 10.5, c1 <= 13, c3 > 11.0, c2 > 2, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3401 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 4, c5 <= 10.5, c1 <= 13, c3 > 11.0, c2 > 2, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3403 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 > 11.5, c1 > 1.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3405 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 > 11.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3410 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 <= 11.5, c1 > 2.5, c4 > 1.0, c5 <= 5.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3411 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 <= 11.5, c1 > 2.5, c4 <= 1.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3412 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 3, c3 <= 11.5, c1 > 2.5, c4 <= 1.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3417 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 2, c1 > 1.0, c4 > 2.0, c5 > 9.0, c2 > 3.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3419 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 2, c1 > 1.0, c4 <= 2.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3420 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 2, c1 > 1.0, c4 <= 2.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3422 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 <= 1.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3423 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 <= 1.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3424 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 > 2.0, c3 <= 4.0, c1 <= 9.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3426 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 > 2.0, c3 <= 4.0, c1 > 9.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3427 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 > 2.0, c3 <= 4.0, c1 > 9.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3430 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 > 2.0, c3 > 4.0, c1 <= 2.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 > 2.0, c3 > 4.0, c1 <= 2.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 <= 2.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3433 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 4, s2 == 1, s5 == 1, c2 > 1.5, c5 <= 2.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3434 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 <= 6.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3438 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 > 6.5, c4 <= 5.0, c2 > 4.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3439 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 > 6.5, c4 > 5.0, c2 > 8.5, c3 > 6.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3443 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 4, c1 > 6.5, c4 > 5.0, c2 <= 8.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3445 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 <= 8.0, c5 > 1.0, c3 > 3.5, c2 <= 4.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 <= 8.0, c5 > 1.0, c3 > 3.5, c2 <= 4.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3449 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 <= 8.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3451 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 > 8.0, c3 > 1.0, c5 > 2.0, c1 > 2.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3452 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 > 8.0, c3 > 1.0, c5 > 2.0, c1 <= 2.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3453 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 > 8.0, c3 > 1.0, c5 > 2.0, c1 <= 2.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3454 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 > 8.0, c3 > 1.0, c5 <= 2.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3455 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 > 8.0, c3 > 1.0, c5 <= 2.0, c1 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3456 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 3, c4 > 8.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3458 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 2, c2 > 2.5, c1 <= 2.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3459 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 2, c2 > 2.5, c1 <= 2.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3460 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 2, c2 > 2.5, c1 > 2.5, c3 > 2.0, c4 <= 5.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 2, c2 > 2.5, c1 > 2.5, c3 > 2.0, c4 <= 5.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3465 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 > 2.0, c2 <= 12.5, c1 <= 2.5, c3 <= 9.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3466 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 > 2.0, c2 <= 12.5, c1 <= 2.5, c3 <= 9.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3467 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 > 2.0, c2 <= 12.5, c1 <= 2.5, c3 > 9.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3474 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 4, s2 == 1, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3475 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 4, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3476 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 4, c1 <= 13, c2 <= 3.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3477 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 4, c1 <= 13, c2 <= 3.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3478 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 4, c1 <= 13, c2 > 3.5, c4 > 2.0, c3 <= 3.5, c5 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3479 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 4, c1 <= 13, c2 > 3.5, c4 > 2.0, c3 <= 3.5, c5 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3480 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 4, c1 <= 13, c2 > 3.5, c4 > 2.0, c3 > 3.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3482 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 4, c1 <= 13, c2 > 3.5, c4 <= 2.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3483 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 4, c1 <= 13, c2 > 3.5, c4 <= 2.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3484 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 3, c4 <= 10.5, c5 <= 8.5, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#3487 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 3, c4 <= 10.5, c5 <= 8.5, c1 <= 12, c2 <= 6.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#3491 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 2, c5 > 2.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3495 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 2, c5 > 2.5, c1 > 1.5, c4 <= 2.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3496 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 2, c5 > 2.5, c1 > 1.5, c4 <= 2.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 1, c2 > 2.0, c3 > 12.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3502 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 1, c2 > 2.0, c3 > 12.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3503 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 3, s2 == 1, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3504 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 <= 11.0, c4 <= 2.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3505 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 <= 11.0, c4 <= 2.5, c1 <= 7.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3506 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 <= 11.0, c4 <= 2.5, c1 <= 7.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 <= 11.0, c4 > 2.5, c1 <= 10.0, c3 <= 3.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3508 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 <= 11.0, c4 > 2.5, c1 <= 10.0, c3 <= 3.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3509 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 <= 11.0, c4 > 2.5, c1 <= 10.0, c3 > 3.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3512 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 > 11.0, c5 <= 10.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3513 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 4, c2 > 11.0, c5 <= 10.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3516 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 3, c4 > 3.0, c5 <= 9.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3519 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 3, c4 > 3.0, c5 <= 9.0, c2 > 3.5, c1 > 6.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3520 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 3, c4 > 3.0, c5 > 9.0, c1 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3521 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 3, c4 > 3.0, c5 > 9.0, c1 <= 11, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3522 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 3, c4 > 3.0, c5 > 9.0, c1 <= 11, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3526 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 2, c2 > 3.0, c3 > 2.5, c4 <= 10.0, c1 > 2.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3528 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 2, c2 > 3.0, c3 > 2.5, c4 > 10.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3530 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 <= 8.0, c1 <= 3.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3531 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 <= 8.0, c1 <= 3.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3532 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 <= 8.0, c1 > 3.0, c4 > 2.0, c2 <= 12.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3536 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 <= 8.0, c1 > 3.0, c4 <= 2.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3539 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 2, s2 == 1, c5 > 8.0, c2 <= 6.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3541 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 <= 5.0, c1 <= 8.0, c5 <= 7.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3542 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 <= 5.0, c1 <= 8.0, c5 <= 7.5, c2 <= 6.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3543 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 <= 5.0, c1 <= 8.0, c5 <= 7.5, c2 <= 6.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3544 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 <= 5.0, c1 <= 8.0, c5 > 7.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3548 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 > 5.0, c1 > 2.0, c3 <= 8.0, c2 > 3.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3551 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 4, c4 > 5.0, c1 <= 2.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3552 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 > 1.0, c1 > 2.0, c5 <= 2.5, c3 <= 10.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3553 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 > 1.0, c1 > 2.0, c5 <= 2.5, c3 <= 10.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3554 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 > 1.0, c1 > 2.0, c5 <= 2.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3555 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 > 1.0, c1 > 2.0, c5 > 2.5, c3 <= 5.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 > 1.0, c1 > 2.0, c5 > 2.5, c3 > 5.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3559 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 > 1.0, c1 <= 2.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3560 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 > 1.0, c1 <= 2.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3561 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 <= 1.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 3, c2 <= 1.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3563 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 2, c1 <= 2.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3564 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 2, c1 <= 2.5, c2 <= 7.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3565 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 2, c1 <= 2.5, c2 <= 7.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3567 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 2, c1 > 2.5, c5 <= 4.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3571 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 2, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 > 1.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3574 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 > 2.0, c3 <= 5.0, c1 > 2.5, c5 <= 11.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3575 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 > 2.0, c3 <= 5.0, c1 > 2.5, c5 <= 11.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3576 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 > 2.0, c3 > 5.0, c1 > 1.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3579 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 > 2.0, c3 > 5.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3580 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 <= 2.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3581 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 3, s5 == 1, s2 == 1, c4 <= 2.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3582 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 <= 2.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3583 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 <= 2.5, c3 > 3.0, c1 <= 5.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3584 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 <= 2.5, c3 > 3.0, c1 <= 5.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3585 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 <= 2.5, c3 > 3.0, c1 > 5.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3589 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 > 2.5, c1 > 1.0, c4 > 12, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3593 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 4, c2 > 2.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3601 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 <= 2.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3602 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 <= 2.5, c3 <= 6.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3603 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 <= 2.5, c3 <= 6.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3604 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 > 2.5, c4 <= 11.0, c3 <= 10.5, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3606 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 > 2.5, c4 <= 11.0, c3 > 10.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3608 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 > 2.5, c4 > 11.0, c3 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3610 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 2, c1 <= 11.5, c2 > 2.5, c4 > 11.0, c3 <= 9, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 <= 9.0, c4 <= 10.0, c3 <= 4.0, c2 <= 8.5, c5 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3613 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 <= 9.0, c4 <= 10.0, c3 <= 4.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3617 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 <= 9.0, c4 > 10.0, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3618 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 <= 9.0, c4 > 10.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 > 9.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3623 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 4, s5 == 1, c1 > 9.0, c5 > 1.5, c4 > 5.5, c2 <= 10.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3628 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 > 5.5, c3 <= 8.5, c4 <= 2.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3631 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 <= 5.5, c1 <= 10.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3632 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 <= 5.5, c1 <= 10.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 <= 5.5, c1 > 10.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 <= 5.5, c1 > 10.0, c3 <= 6.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3635 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 4, c2 > 2.5, c5 <= 5.5, c1 > 10.0, c3 <= 6.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3638 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 <= 9.5, c1 > 4.0, c5 <= 3.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3640 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 <= 9.5, c1 > 4.0, c5 > 3.5, c4 <= 6.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3641 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 <= 9.5, c1 > 4.0, c5 > 3.5, c4 <= 6.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3642 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 > 9.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3643 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 > 9.5, c3 > 4.0, c4 > 3.0, c1 <= 9.5, c5 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3644 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 > 9.5, c3 > 4.0, c4 > 3.0, c1 <= 9.5, c5 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3645 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 > 9.5, c3 > 4.0, c4 > 3.0, c1 > 9.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 > 9.5, c3 > 4.0, c4 > 3.0, c1 > 9.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3647 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 3, c2 > 9.5, c3 > 4.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3650 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 2, c1 > 1.0, c2 > 1.0, c3 > 1.5, c4 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 2, c1 > 1.0, c2 <= 1.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3653 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 2, c1 > 1.0, c2 <= 1.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3656 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 > 2.0, c4 <= 3.0, c2 > 8.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3657 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 > 2.0, c4 <= 3.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3660 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 > 2.0, c4 > 3.0, c3 <= 12.5, c2 <= 1.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3661 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 > 2.0, c4 > 3.0, c3 <= 12.5, c2 <= 1.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3662 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 > 2.0, c4 > 3.0, c3 > 12.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3664 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 <= 2.0, c2 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3665 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 3, s5 == 1, c1 <= 2.0, c2 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3666 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 <= 5.5, c1 <= 4.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3667 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 <= 5.5, c1 <= 4.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 <= 5.5, c1 > 4.0, c2 <= 10.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3669 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 <= 5.5, c1 > 4.0, c2 <= 10.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3670 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 <= 5.5, c1 > 4.0, c2 > 10.5, c3 <= 12.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3671 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 <= 5.5, c1 > 4.0, c2 > 10.5, c3 <= 12.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3672 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 <= 5.5, c1 > 4.0, c2 > 10.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3673 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 > 5.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3675 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 > 5.5, c1 > 3.5, c3 > 9.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3677 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 4, c4 > 5.5, c1 > 3.5, c3 <= 9.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 3.0, c5 <= 5.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3681 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 3.0, c5 <= 5.0, c4 > 3.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 3.0, c5 > 5.0, c3 <= 7.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3685 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 3.0, c5 > 5.0, c3 > 7.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3687 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 > 7.5, c4 > 3.0, c3 <= 3.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3688 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 3, c1 > 7.5, c4 > 3.0, c3 <= 3.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3692 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 2, c2 > 1.5, c1 > 3.0, c3 <= 9.5, c4 > 1.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3694 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 2, c2 > 1.5, c1 > 3.0, c3 <= 9.5, c4 <= 1.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3695 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 2, c2 > 1.5, c1 > 3.0, c3 <= 9.5, c4 <= 1.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3696 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 2, c2 > 1.5, c1 > 3.0, c3 > 9.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3697 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 2, c2 > 1.5, c1 > 3.0, c3 > 9.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3698 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 <= 3.5, c2 > 5.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3703 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 > 3.5, c2 <= 9.5, c3 <= 5.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3705 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 > 3.5, c2 > 9.5, c4 <= 10.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3706 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 > 1.0, c5 > 3.5, c2 > 9.5, c4 <= 10.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3708 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 <= 1.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3709 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 2, s5 == 1, c1 <= 1.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3710 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#3712 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 <= 8.0, c4 <= 3.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 <= 8.0, c4 > 3.0, c5 <= 4.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3715 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 <= 8.0, c4 > 3.0, c5 > 4.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3719 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 > 8.0, c4 > 1.0, c3 <= 5.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3720 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 > 8.0, c4 > 1.0, c3 <= 5.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3721 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 4, c2 <= 13, c1 > 8.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3722 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 > 1.0, c4 > 2.0, c1 <= 9.5, c5 <= 12.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3726 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 > 1.0, c4 > 2.0, c1 > 9.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3727 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 > 1.0, c4 > 2.0, c1 > 9.5, c3 > 1.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3730 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 <= 1.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3731 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 3, c2 <= 1.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3734 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 2, c5 <= 10.5, c4 > 2.5, c1 <= 9.0, c2 > 2.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3739 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 2, c5 > 10.5, c2 <= 2.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3740 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 2, c5 > 10.5, c2 <= 2.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3741 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 <= 12.0, c3 <= 4.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 <= 12.0, c3 <= 4.5, c1 > 9.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3748 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 <= 12.0, c3 > 4.5, c1 <= 1.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3749 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 <= 12.0, c3 > 4.5, c1 <= 1.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3750 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 > 12.0, c3 > 2.0, c1 <= 8.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 > 12.0, c3 > 2.0, c1 <= 8.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3753 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 2, s2 == 1, s5 == 1, c5 > 12.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3757 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 4, c1 > 2.0, c2 > 1.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3758 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 4, c1 > 2.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3759 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 4, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3764 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 3, c5 > 2.0, c3 > 1.5, c1 > 2.5, c2 > 9.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3767 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 2, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3768 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 2, c1 <= 13, c4 > 2.0, c3 <= 9.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3772 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 2, c1 <= 13, c4 > 2.0, c3 > 9.0, c2 <= 10.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3773 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 2, c1 <= 13, c4 > 2.0, c3 > 9.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3775 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 1, c2 > 1.0, c3 <= 9.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 1, c2 > 1.0, c3 <= 9.0, c1 > 1.5, c5 <= 3.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3777 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 1, c2 > 1.0, c3 <= 9.0, c1 > 1.5, c5 <= 3.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 1, c2 > 1.0, c3 <= 9.0, c1 > 1.5, c5 > 3.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3780 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 1, c2 > 1.0, c3 > 9.0, c1 <= 5.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3781 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 1, c2 > 1.0, c3 > 9.0, c1 <= 5.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 4, s5 == 1, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3786 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 > 2.0, c1 <= 12.0, c3 > 2.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3787 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 > 2.0, c1 <= 12.0, c3 <= 2.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3788 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 > 2.0, c1 <= 12.0, c3 <= 2.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 > 2.0, c1 > 12.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3791 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 <= 2.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3793 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 4, c4 <= 2.0, c3 > 7.5, c1 > 5.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 3, c5 <= 12.5, c1 <= 1.5, c2 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3796 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 3, c5 <= 12.5, c1 <= 1.5, c2 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3798 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 3, c5 <= 12.5, c1 > 1.5, c2 > 4.0, c3 <= 4.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3802 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 2, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 2, c5 <= 11.5, c1 > 1.0, c2 > 3.0, c3 > 2.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3807 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 2, c5 <= 11.5, c1 <= 1.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3808 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 2, c5 <= 11.5, c1 <= 1.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3810 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 1, c2 > 1.0, c3 <= 11.5, c1 > 2.0, c4 > 5.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3812 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 1, c2 > 1.0, c3 <= 11.5, c1 > 2.0, c4 <= 5.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3815 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 3, s5 == 1, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3816 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 <= 9.0, c1 <= 4.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3817 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 <= 9.0, c1 <= 4.5, c3 <= 6.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 <= 9.0, c1 <= 4.5, c3 <= 6.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3819 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 <= 9.0, c1 > 4.5, c3 <= 4.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3820 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 <= 9.0, c1 > 4.5, c3 <= 4.0, c4 <= 5.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3821 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 <= 9.0, c1 > 4.5, c3 <= 4.0, c4 <= 5.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3825 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 4, c2 > 9.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3829 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 <= 7.5, c2 <= 4.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3831 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 4.5, c5 <= 5.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3833 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 4.5, c5 <= 5.5, c4 > 4.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3834 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 4.5, c5 > 5.5, c4 > 2.5, c3 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3836 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 <= 7.5, c2 > 4.5, c5 > 5.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 > 7.5, c4 > 2.5, c2 > 1.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3841 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 3, c1 > 7.5, c4 > 2.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3842 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 2, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3843 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 2, c1 > 1.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3847 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 2, c1 > 1.5, c3 > 4.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3850 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 <= 9.5, c3 <= 6.5, c1 <= 9.5, c4 <= 8.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3851 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 <= 9.5, c3 <= 6.5, c1 <= 9.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3853 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 <= 9.5, c3 > 6.5, c1 > 4.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3854 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 <= 9.5, c3 > 6.5, c1 > 4.0, c5 <= 8.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3856 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 > 9.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3857 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 > 9.5, c5 > 4.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3860 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 2, s5 == 1, c2 > 9.5, c5 > 4.5, c1 > 3.5, c4 <= 8.5, c3 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3861 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 <= 11.0, c1 <= 4.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#3864 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 <= 11.0, c1 > 4.0, c2 <= 4.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3865 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 <= 11.0, c1 > 4.0, c2 > 4.5, c3 > 11.5, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3866 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 <= 11.0, c1 > 4.0, c2 > 4.5, c3 > 11.5, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3867 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 <= 11.0, c1 > 4.0, c2 > 4.5, c3 <= 11.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3870 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 4, c5 > 11.0, c3 <= 8.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3872 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 <= 3.0, c1 > 7.0, c2 <= 10.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 <= 3.0, c1 > 7.0, c2 <= 10.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3874 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 <= 3.0, c1 > 7.0, c2 > 10.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 <= 3.0, c1 > 7.0, c2 > 10.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3876 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 <= 3.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3877 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 > 3.0, c1 <= 3.5, c2 <= 4.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3878 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 > 3.0, c1 <= 3.5, c2 <= 4.5, c4 > 6.5, c5 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3879 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 3, c3 > 3.0, c1 <= 3.5, c2 <= 4.5, c4 > 6.5, c5 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3890 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 > 4.5, c5 <= 2.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3891 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 > 4.5, c5 <= 2.5, c3 <= 11.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3892 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 > 4.5, c5 <= 2.5, c3 <= 11.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3893 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 > 4.5, c5 > 2.5, c3 <= 2.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3894 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 > 4.5, c5 > 2.5, c3 <= 2.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3895 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 2, c2 <= 11.5, c1 > 4.5, c5 > 2.5, c3 > 2.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3897 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 <= 3.0, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3898 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 <= 3.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3899 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 > 3.0, c4 <= 9.0, c1 <= 8.0, c2 > 4.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3900 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 > 3.0, c4 <= 9.0, c1 <= 8.0, c2 > 4.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3904 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 > 3.0, c4 <= 9.0, c1 > 8.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3906 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 3, s3 == 1, s2 == 1, s5 == 1, c3 > 3.0, c4 > 9.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3907 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 > 1.0, c3 > 2.0, c2 <= 4.0, c4 <= 8.0, c5 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3908 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 > 1.0, c3 > 2.0, c2 <= 4.0, c4 <= 8.0, c5 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3910 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 > 1.0, c3 > 2.0, c2 <= 4.0, c4 > 8.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3911 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 > 1.0, c3 > 2.0, c2 > 4.0, c5 <= 3.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3912 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 > 1.0, c3 > 2.0, c2 > 4.0, c5 <= 3.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3916 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 4, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3920 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 3, c1 <= 11.5, c3 > 1.5, c4 <= 12.5, c2 > 2.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3924 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 <= 8.0, c3 <= 5.0, c2 <= 5.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3925 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 <= 8.0, c3 <= 5.0, c2 <= 5.5, c4 <= 8.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3926 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 <= 8.0, c3 <= 5.0, c2 <= 5.5, c4 <= 8.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3927 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 <= 8.0, c3 > 5.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3930 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 <= 8.0, c3 > 5.0, c2 <= 11.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3932 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 > 8.0, c5 <= 11.5, c2 <= 6.5, c3 <= 7.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3934 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 > 8.0, c5 <= 11.5, c2 <= 6.5, c3 > 7.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3935 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 > 8.0, c5 <= 11.5, c2 <= 6.5, c3 > 7.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3937 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 > 8.0, c5 <= 11.5, c2 > 6.5, c4 > 1.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3938 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 2, c1 > 8.0, c5 <= 11.5, c2 > 6.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3939 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 <= 10.0, c2 <= 6.5, c4 <= 9.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3940 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 <= 10.0, c2 <= 6.5, c4 <= 9.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3942 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 <= 10.0, c2 <= 6.5, c4 > 9.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 <= 10.0, c2 > 6.5, c5 <= 11.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3946 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 > 10.0, c5 > 5.5, c2 <= 3.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3947 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 > 10.0, c5 > 5.5, c2 <= 3.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3950 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 > 1.0, c3 > 10.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3951 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 <= 1.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3952 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 <= 1.0, c2 <= 7.5, c3 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3953 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 4, s3 == 1, c1 <= 1.0, c2 <= 7.5, c3 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3954 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 4, c5 <= 12.0, c2 <= 3.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3955 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 4, c5 <= 12.0, c2 <= 3.0, c1 > 3.0, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3957 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 4, c5 <= 12.0, c2 > 3.0, c1 <= 1.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3958 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 4, c5 <= 12.0, c2 > 3.0, c1 <= 1.5, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3960 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 4, c5 <= 12.0, c2 > 3.0, c1 > 1.5, c3 > 2.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3963 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 3, c2 > 2.0, c5 > 5.5, c1 <= 12.0, c3 > 1.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3965 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 3, c2 > 2.0, c5 > 5.5, c1 <= 12.0, c3 <= 1.0, c4 <= 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3966 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 3, c2 > 2.0, c5 > 5.5, c1 <= 12.0, c3 <= 1.0, c4 > 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3970 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 3, c2 <= 2.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3971 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 3, c2 <= 2.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3972 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 <= 1.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3973 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 <= 1.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3974 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 > 1.5, c1 > 2.0, c5 <= 11.0, c3 <= 2.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3978 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 > 1.5, c1 > 2.0, c5 > 11.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3979 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 > 1.5, c1 > 2.0, c5 > 11.0, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 > 1.5, c1 <= 2.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3981 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 2, c2 > 1.5, c1 <= 2.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3982 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 <= 3.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3984 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 <= 3.0, c4 <= 11.5, c5 > 3.0, c1 > 3.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3987 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 > 3.0, c2 > 2.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3989 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 > 3.0, c2 > 2.0, c1 <= 12, c4 > 2.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3991 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 > 3.0, c2 <= 2.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3992 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 > 3.0, c2 <= 2.0, c1 > 3.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#3993 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 3, s3 == 1, c3 > 3.0, c2 <= 2.0, c1 > 3.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#3994 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 4, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#3997 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 4, c4 <= 13, c1 > 2.5, c2 > 2.0, c3 > 13, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#3998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 4, c4 <= 13, c1 > 2.5, c2 > 2.0, c3 <= 13, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4000 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 4, c4 <= 13, c1 > 2.5, c2 <= 2.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4001 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 4, c4 <= 13, c1 > 2.5, c2 <= 2.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4003 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 > 11.5, c1 <= 7.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4004 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 > 11.5, c1 <= 7.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4005 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 <= 9.0, c3 <= 12.5, c5 > 2.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4008 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 <= 9.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4009 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 > 9.0, c1 <= 4.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4010 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 > 9.0, c1 <= 4.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4011 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 > 9.0, c1 > 4.0, c3 <= 8.5, c5 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 > 9.0, c1 > 4.0, c3 <= 8.5, c5 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4014 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 3, c4 <= 11.5, c2 > 9.0, c1 > 4.0, c3 > 8.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4018 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 > 2.0, c3 <= 11.0, c2 <= 6.5, c5 > 9.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4019 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 > 2.0, c3 <= 11.0, c2 > 6.5, c1 > 11.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 > 2.0, c3 <= 11.0, c2 > 6.5, c1 > 11.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4022 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 > 2.0, c3 <= 11.0, c2 > 6.5, c1 <= 11.5, c5 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4024 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 2, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4025 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 <= 1.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4026 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 <= 1.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4028 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 9.0, c1 > 3.5, c3 > 12, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4029 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 9.0, c1 > 3.5, c3 > 12, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4032 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 > 9.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4034 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 > 9.0, c5 > 3.5, c1 <= 4.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4037 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 > 11.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4040 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 <= 10.0, c2 <= 6.0, c5 <= 8.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4041 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 <= 10.0, c2 <= 6.0, c5 <= 8.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4042 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 <= 10.0, c2 > 6.0, c3 <= 7.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4044 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 <= 10.0, c2 > 6.0, c3 > 7.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4045 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 <= 10.0, c2 > 6.0, c3 > 7.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4046 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 > 10.0, c2 <= 3.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4047 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 4, c1 <= 11.5, c4 > 10.0, c2 <= 3.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4050 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 <= 5.0, c1 <= 6.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4051 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 <= 5.0, c1 <= 6.0, c2 > 4.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4052 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 <= 5.0, c1 <= 6.0, c2 > 4.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4054 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 > 5.0, c2 > 2.0, c4 > 2.0, c1 <= 10.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4055 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 > 5.0, c2 > 2.0, c4 > 2.0, c1 > 10.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4056 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 > 5.0, c2 > 2.0, c4 > 2.0, c1 > 10.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4057 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 > 5.0, c2 > 2.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 3, c3 > 5.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4059 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 <= 11.0, c2 <= 12.0, c3 <= 2.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4060 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 <= 11.0, c2 <= 12.0, c3 <= 2.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4063 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 <= 11.0, c2 <= 12.0, c3 > 2.5, c4 > 12.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4064 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 <= 11.0, c2 <= 12.0, c3 > 2.5, c4 > 12.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4065 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 <= 11.0, c2 > 12.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4066 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 <= 11.0, c2 > 12.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4067 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 > 11.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4068 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 > 11.0, c1 <= 7.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4069 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 > 11.0, c1 <= 7.5, c2 > 8.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4070 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 2, c5 > 11.0, c1 <= 7.5, c2 > 8.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4071 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 1, c2 > 2.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4075 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 1, c2 > 2.0, c1 <= 13, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4076 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 1, c2 <= 2.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4077 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 4, s2 == 1, s3 == 1, c2 <= 2.0, c1 <= 11.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4082 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 > 1.0, c4 <= 9.0, c2 > 12.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4083 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 > 1.0, c4 <= 9.0, c2 > 12.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4084 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 > 1.0, c4 > 9.0, c2 <= 2.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4085 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 > 1.0, c4 > 9.0, c2 <= 2.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4087 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 > 1.0, c4 > 9.0, c2 > 2.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4088 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 <= 1.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4089 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c3 <= 1.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4091 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 <= 5.0, c2 > 1.0, c3 <= 12.5, c1 > 1.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4093 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 <= 5.0, c2 > 1.0, c3 > 12.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4095 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 <= 5.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4097 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 > 5.0, c4 > 1.0, c3 <= 9.0, c1 > 2.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4100 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 > 5.0, c4 > 1.0, c3 > 9.0, c2 <= 9.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4101 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 > 5.0, c4 > 1.0, c3 > 9.0, c2 <= 9.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4102 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c5 > 5.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4103 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 <= 3.5, c2 <= 6.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4104 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 <= 3.5, c2 <= 6.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4106 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 > 3.5, c2 <= 10.5, c4 > 11.5, c1 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4107 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 > 3.5, c2 <= 10.5, c4 > 11.5, c1 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4108 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 > 3.5, c2 <= 10.5, c4 <= 11.5, c1 <= 3.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c3 > 3.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4116 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 > 2.0, c5 <= 9.5, c1 > 10.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4117 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 > 2.0, c5 > 9.5, c1 <= 5.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4118 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 > 2.0, c5 > 9.5, c1 <= 5.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4121 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 <= 2.0, c1 <= 8.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4122 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 <= 2.0, c1 <= 8.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4123 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 1.0, c3 <= 2.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4124 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 <= 1.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4125 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 <= 1.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4126 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 <= 12.5, c5 <= 2.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4128 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 <= 12.5, c5 > 2.5, c2 <= 1.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4129 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 <= 12.5, c5 > 2.5, c2 <= 1.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4131 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 <= 12.5, c5 > 2.5, c2 > 1.5, c3 > 2.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4133 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 > 12.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4134 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 > 12.5, c2 <= 7.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4135 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c1 > 12.5, c2 <= 7.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4136 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c1 <= 3.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4137 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c1 <= 3.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4138 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c1 > 3.5, c2 <= 3.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4141 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c1 > 3.5, c2 > 3.0, c3 <= 10.0, c4 > 6.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4144 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 <= 12.5, c3 <= 10.0, c4 <= 5.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4148 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 <= 12.5, c3 > 10.0, c4 <= 3.0, c5 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 <= 12.5, c3 > 10.0, c4 <= 3.0, c5 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4152 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 > 12.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4153 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 2.0, c2 > 12.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4154 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 <= 2.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4155 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 <= 2.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4161 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c2 > 3.5, c4 > 9.5, c3 <= 1.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4162 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c2 > 3.5, c4 > 9.5, c3 <= 1.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 <= 1.5, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4164 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 <= 1.5, c1 <= 12, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4165 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 <= 1.5, c1 <= 12, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4166 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 > 1.5, c1 <= 11.0, c5 <= 8.5, c2 > 2.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 > 1.5, c1 <= 11.0, c5 <= 8.5, c2 <= 2.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4169 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 > 1.5, c1 <= 11.0, c5 <= 8.5, c2 <= 2.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4170 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 > 1.5, c1 <= 11.0, c5 > 8.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4171 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 > 1.5, c1 <= 11.0, c5 > 8.5, c2 <= 8.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 > 1.5, c1 <= 11.0, c5 > 8.5, c2 <= 8.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4173 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c3 > 1.5, c1 > 11.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 <= 7.5, c4 > 10.5, c1 <= 12.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4178 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 <= 7.5, c4 > 10.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4179 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 > 7.5, c4 > 11.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4180 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 > 7.5, c4 > 11.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4181 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 > 7.5, c4 <= 11.5, c2 <= 10.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 > 7.5, c4 <= 11.5, c2 <= 10.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4183 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c5 > 2.0, c3 > 7.5, c4 <= 11.5, c2 > 10.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4186 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 2.0, c1 > 12, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4192 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4198 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c4 > 2.5, c2 > 6.0, c5 > 2.0, c1 > 7.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4203 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 <= 8.0, c1 <= 3.5, c2 > 1.0, c4 <= 8.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4204 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 <= 8.0, c1 <= 3.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4205 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 <= 8.0, c1 > 3.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4206 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 <= 8.0, c1 > 3.5, c4 > 1.5, c2 > 2.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4208 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 <= 8.0, c1 > 3.5, c4 > 1.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4209 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 > 8.0, c5 > 2.0, c1 > 1.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4211 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 > 8.0, c5 > 2.0, c1 > 1.0, c2 <= 13, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4212 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c3 > 8.0, c5 > 2.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4214 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 <= 12.5, c5 > 2.0, c2 <= 3.0, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4215 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 <= 12.5, c5 > 2.0, c2 <= 3.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4219 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 <= 12.5, c5 <= 2.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4221 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 <= 12.5, c5 <= 2.0, c2 <= 7.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4222 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 > 12.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4223 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c1 > 12.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4224 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4225 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 > 1.5, c4 <= 2.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4227 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c1 > 1.5, c4 > 2.0, c2 > 8.5, c3 > 11.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4234 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c1 <= 10.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4239 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c1 > 10.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4240 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c1 > 10.0, c4 > 4.5, c5 <= 2.5, c2 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4241 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c1 > 10.0, c4 > 4.5, c5 <= 2.5, c2 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4247 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 <= 11.0, c2 > 12.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4248 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 <= 11.0, c2 > 12.5, c3 <= 8.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4249 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 <= 11.0, c2 > 12.5, c3 <= 8.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 > 11.0, c4 > 1.5, c2 <= 10.0, c3 <= 9.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4251 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 > 11.0, c4 > 1.5, c2 <= 10.0, c3 <= 9.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 > 11.0, c4 > 1.5, c2 <= 10.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4254 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c1 > 11.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4256 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 <= 3.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 > 3.0, c3 <= 12.0, c4 > 11.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4258 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 > 3.0, c3 <= 12.0, c4 > 11.5, c2 > 9.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4259 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 > 3.0, c3 <= 12.0, c4 > 11.5, c2 > 9.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4261 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 > 3.0, c3 <= 12.0, c4 <= 11.5, c2 > 2.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4264 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c1 > 3.0, c3 > 12.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4265 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 4.0, c4 > 2.0, c3 <= 7.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4268 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 4.0, c4 <= 2.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4269 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 4.0, c4 <= 2.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4270 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 4.0, c4 <= 6.5, c1 <= 9.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4272 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 4.0, c4 <= 6.5, c1 > 9.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4273 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 4.0, c4 <= 6.5, c1 > 9.5, c3 <= 6.0, c5 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4274 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 4.0, c4 <= 6.5, c1 > 9.5, c3 <= 6.0, c5 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4277 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 <= 3.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4278 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 <= 3.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4279 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 <= 8.0, c3 <= 7.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4280 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 <= 8.0, c3 <= 7.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4281 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 <= 8.0, c3 > 7.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4282 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 <= 8.0, c3 > 7.5, c4 <= 9.0, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4283 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 <= 8.0, c3 > 7.5, c4 <= 9.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4285 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 > 8.0, c4 <= 5.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4288 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c1 > 3.0, c2 > 8.0, c4 > 5.0, c3 > 3.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 > 5.5, c5 <= 8.0, c1 > 2.5, c3 <= 3.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4291 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 > 5.5, c5 <= 8.0, c1 > 2.5, c3 <= 3.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4294 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 > 5.5, c5 > 8.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4296 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 > 5.5, c5 > 8.0, c1 <= 7.5, c3 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4297 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 <= 5.5, c1 <= 2.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4298 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 <= 5.5, c1 <= 2.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c2 <= 5.5, c1 > 2.5, c3 <= 9.0, c4 > 3.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4304 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c1 <= 3.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4305 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c1 <= 3.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4306 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c1 > 3.5, c5 > 1.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4307 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c1 > 3.5, c5 > 1.0, c3 > 3.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4309 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c1 > 3.5, c5 > 1.0, c3 > 3.5, c2 <= 11.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c1 > 3.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4311 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 <= 10.0, c2 <= 12.5, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 <= 10.0, c2 <= 12.5, c1 <= 12, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4315 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 > 10.0, c1 <= 3.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4316 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 > 10.0, c1 <= 3.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 > 10.0, c1 > 3.5, c3 <= 6.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4319 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c4 > 2.0, c5 > 10.0, c1 > 3.5, c3 > 6.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4325 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 <= 11.0, c1 > 1.0, c2 <= 2.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4326 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 <= 11.0, c1 > 1.0, c2 <= 2.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4327 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 <= 11.0, c1 <= 1.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 <= 11.0, c1 <= 1.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4329 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 > 11.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4330 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 > 11.0, c1 > 5.0, c2 > 7.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4331 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 > 11.0, c1 > 5.0, c2 > 7.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4332 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c3 > 11.0, c1 > 5.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#4334 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 <= 6.0, c1 > 5.0, c4 <= 2.0, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 <= 6.0, c1 > 5.0, c4 <= 2.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4336 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 <= 6.0, c1 <= 5.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 <= 6.0, c1 <= 5.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4338 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 > 6.0, c1 <= 4.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4339 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 > 6.0, c1 <= 4.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4340 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 > 6.0, c1 > 4.0, c2 <= 11.0, c3 <= 3.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4341 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 > 6.0, c1 > 4.0, c2 <= 11.0, c3 <= 3.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4342 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c5 > 6.0, c1 > 4.0, c2 <= 11.0, c3 > 3.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4346 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 <= 6.0, c1 <= 7.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4347 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 <= 6.0, c1 <= 7.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 6.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4349 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 6.0, c2 > 1.5, c1 > 3.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4353 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c2 <= 2.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4354 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c2 <= 2.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4359 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c2 > 2.5, c1 > 10.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4360 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c2 > 2.5, c1 > 10.5, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4363 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 > 8.5, c3 > 6.0, c4 > 6.0, c1 <= 5.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4366 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 <= 8.5, c1 <= 8.0, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4369 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 <= 8.5, c1 <= 8.0, c3 <= 12, c2 <= 7.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4370 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 <= 8.5, c1 <= 8.0, c3 <= 12, c2 <= 7.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4372 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c5 <= 8.5, c1 > 8.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4373 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 > 1.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 > 1.0, c4 <= 13, c5 <= 12.0, c1 <= 11.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4376 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 > 1.0, c4 <= 13, c5 <= 12.0, c1 > 11.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4379 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 > 1.0, c4 <= 13, c5 > 12.0, c1 > 2.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4380 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 > 1.0, c4 <= 13, c5 > 12.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4382 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c3 <= 1.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4384 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 <= 5.5, c2 <= 6.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 <= 5.5, c2 > 6.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4386 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 <= 5.5, c2 > 6.0, c1 <= 11.5, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4387 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 <= 5.5, c2 > 6.0, c1 <= 11.5, c4 <= 11, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4388 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 <= 5.5, c2 > 6.0, c1 <= 11.5, c4 <= 11, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4389 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 > 5.5, c2 <= 12.0, c1 > 1.0, c4 <= 1.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4390 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 > 5.5, c2 <= 12.0, c1 > 1.0, c4 <= 1.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4393 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 > 5.5, c2 <= 12.0, c1 <= 1.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4394 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c3 > 5.5, c2 <= 12.0, c1 <= 1.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4396 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 <= 7.5, c4 > 11.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4397 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 <= 7.5, c4 > 11.5, c1 > 1.5, c2 <= 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4398 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 <= 7.5, c4 > 11.5, c1 > 1.5, c2 > 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4400 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 <= 7.5, c4 <= 11.5, c1 > 1.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4403 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 > 7.5, c2 <= 6.5, c1 <= 3.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4405 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 > 7.5, c2 <= 6.5, c1 > 3.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4406 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 > 7.5, c2 <= 6.5, c1 > 3.0, c4 > 1.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4409 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 > 7.5, c2 > 6.5, c1 <= 8.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4411 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c3 > 7.5, c2 > 6.5, c1 > 8.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4415 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c5 > 1.0, c3 <= 11.0, c4 <= 2.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c5 > 1.0, c3 <= 11.0, c4 <= 2.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c5 > 1.0, c3 > 11.0, c1 <= 7.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4419 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c5 > 1.0, c3 > 11.0, c1 <= 7.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4420 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 > 1.0, c3 > 13, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4422 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 > 1.0, c3 > 13, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4423 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 13, c4 <= 2.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4424 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 13, c4 <= 2.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4427 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 13, c4 > 2.5, c5 <= 2.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4428 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 > 1.0, c3 <= 13, c4 > 2.5, c5 <= 2.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4430 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c2 <= 1.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4431 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4432 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 1.5, c5 > 13, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4433 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 1.5, c5 > 13, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 1.5, c5 <= 13, c1 > 11.0, c2 > 1.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4438 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 1.5, c5 <= 13, c1 > 11.0, c2 > 1.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4439 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 1.5, c5 <= 13, c1 > 11.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4440 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 <= 9.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4441 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 <= 9.5, c1 > 1.5, c2 <= 11.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4444 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 <= 9.5, c1 > 1.5, c2 > 11.0, c4 <= 9.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4445 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 <= 9.5, c1 > 1.5, c2 > 11.0, c4 <= 9.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 <= 9.5, c1 > 1.5, c2 > 11.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 > 9.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4449 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c3 > 9.5, c2 > 4.0, c5 <= 7.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4451 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 5.0, c1 <= 6.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 5.0, c1 <= 6.0, c2 > 3.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4453 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 5.0, c1 <= 6.0, c2 > 3.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4454 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 5.0, c1 > 6.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4457 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 5.0, c1 > 6.0, c2 > 2.5, c5 <= 8.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4458 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 <= 9.5, c2 > 1.0, c4 > 11.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4459 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 <= 9.5, c2 > 1.0, c4 > 11.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 <= 9.5, c2 > 1.0, c4 <= 11.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4462 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 <= 9.5, c2 <= 1.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4463 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 <= 9.5, c2 <= 1.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 > 9.5, c2 > 7.0, c4 <= 12.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4466 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 > 9.5, c2 > 7.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4467 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 > 9.5, c2 <= 7.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4468 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 5.0, c1 > 9.5, c2 <= 7.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4470 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 <= 11.0, c3 > 1.0, c1 <= 12.0, c4 > 1.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4471 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 <= 11.0, c3 > 1.0, c1 <= 12.0, c4 <= 1.0, c5 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4472 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 <= 11.0, c3 > 1.0, c1 <= 12.0, c4 <= 1.0, c5 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4473 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 <= 11.0, c3 > 1.0, c1 > 12.0, c4 <= 8.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4474 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 <= 11.0, c3 > 1.0, c1 > 12.0, c4 <= 8.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4475 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 <= 11.0, c3 > 1.0, c1 > 12.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4476 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 <= 11.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4477 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 > 11.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4480 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c2 > 11.0, c4 > 4.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 <= 4.5, c2 > 1.0, c4 <= 11.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4482 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 <= 4.5, c2 > 1.0, c4 <= 11.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4484 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 <= 4.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4486 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 4.5, c1 <= 4.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4490 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 4.5, c1 > 4.0, c3 > 6.0, c2 > 6.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4495 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c4 <= 11.0, c3 <= 1.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4496 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c4 <= 11.0, c3 <= 1.0, c1 > 4.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4497 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c4 <= 11.0, c3 <= 1.0, c1 > 4.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4501 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c4 > 1.0, c3 > 1.0, c5 <= 3.0, c2 > 4.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4503 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c4 > 1.0, c3 > 1.0, c5 > 3.0, c1 > 13, c2 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4504 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c4 > 1.0, c3 > 1.0, c5 > 3.0, c1 > 13, c2 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4507 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c4 > 1.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4508 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4509 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 > 1.0, c2 <= 9.0, c1 <= 6.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4510 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 > 1.0, c2 <= 9.0, c1 <= 6.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4512 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 > 1.0, c2 <= 9.0, c1 > 6.0, c4 > 4.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4514 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 > 1.0, c2 > 9.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4515 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 > 1.0, c2 > 9.0, c1 > 1.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4516 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 > 1.0, c2 > 9.0, c1 > 1.5, c4 <= 13, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4518 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4520 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 <= 8.5, c5 <= 4.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4523 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 <= 8.5, c5 > 4.5, c2 <= 2.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4524 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 <= 8.5, c5 > 4.5, c2 <= 2.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4525 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 > 8.5, c2 <= 10.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4527 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 > 8.5, c2 <= 10.5, c3 <= 13, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4528 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 > 8.5, c2 > 10.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4529 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c1 > 2.0, c4 > 8.5, c2 > 10.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4534 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c3 <= 12.0, c1 > 1.0, c2 > 1.5, c4 > 2.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4535 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c3 <= 12.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4536 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c3 > 12.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4537 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c3 > 12.0, c1 > 1.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4538 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c3 > 12.0, c1 > 1.5, c2 <= 7.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4539 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c3 > 12.0, c1 > 1.5, c2 <= 7.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4543 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 > 7.0, c1 > 2.5, c2 <= 8.0, c3 <= 6.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4544 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 > 7.0, c1 > 2.5, c2 <= 8.0, c3 > 6.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4545 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 > 7.0, c1 > 2.5, c2 <= 8.0, c3 > 6.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4546 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 <= 7.0, c3 > 7.0, c1 <= 6.0, c5 <= 8.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4547 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 <= 7.0, c3 > 7.0, c1 <= 6.0, c5 <= 8.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4550 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 <= 7.0, c3 <= 7.0, c1 <= 6.0, c5 <= 6.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4551 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 <= 7.0, c3 <= 7.0, c1 <= 6.0, c5 <= 6.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4553 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c4 <= 7.0, c3 <= 7.0, c1 > 6.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4559 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 <= 6.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4560 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 > 6.0, c4 <= 1.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4561 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 > 6.0, c4 <= 1.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 > 6.0, c4 > 1.5, c1 <= 5.0, c2 <= 12.5, c5 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4563 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 > 6.0, c4 > 1.5, c1 <= 5.0, c2 <= 12.5, c5 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4564 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 > 6.0, c4 > 1.5, c1 <= 5.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4565 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 > 6.0, c4 > 1.5, c1 > 5.0, c2 <= 2.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4566 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c3 > 6.0, c4 > 1.5, c1 > 5.0, c2 <= 2.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4570 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c2 > 2.0, c1 > 1.5, c3 > 2.0, c4 <= 4.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4571 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c2 > 2.0, c1 > 1.5, c3 > 2.0, c4 <= 4.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4572 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c2 > 2.0, c1 > 1.5, c3 > 2.0, c4 > 4.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4574 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c2 > 2.0, c1 > 1.5, c3 <= 2.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4575 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c2 > 2.0, c1 > 1.5, c3 <= 2.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c2 <= 2.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4578 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 <= 4.5, c3 <= 8.0, c4 <= 3.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4579 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 <= 4.5, c3 <= 8.0, c4 <= 3.0, c2 > 8.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4580 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 <= 4.5, c3 <= 8.0, c4 <= 3.0, c2 > 8.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4582 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 <= 4.5, c3 > 8.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4584 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 <= 4.5, c3 > 8.0, c5 > 1.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4586 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 > 4.5, c3 > 8.5, c2 > 1.5, c4 <= 4.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4587 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 > 4.5, c3 > 8.5, c2 > 1.5, c4 <= 4.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4589 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 > 4.5, c3 <= 8.5, c2 <= 7.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4590 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 > 4.5, c3 <= 8.5, c2 <= 7.5, c5 > 4.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4591 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 > 4.5, c3 <= 8.5, c2 <= 7.5, c5 > 4.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4593 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c1 > 4.5, c3 <= 8.5, c2 > 7.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4597 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c2 > 2.5, c5 > 2.5, c1 > 2.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4600 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 4, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4603 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 4, c3 > 2.5, c1 <= 8.5, c4 <= 12.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4604 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 4, c3 > 2.5, c1 <= 8.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4605 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 4, c3 > 2.5, c1 > 8.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4606 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 4, c3 > 2.5, c1 > 8.5, c4 > 2.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4608 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 <= 9.5, c3 <= 3.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4610 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 <= 9.5, c3 > 3.0, c1 <= 9.5, c4 <= 2.0, c2 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 <= 9.5, c3 > 3.0, c1 <= 9.5, c4 <= 2.0, c2 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4612 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 <= 9.5, c3 > 3.0, c1 <= 9.5, c4 > 2.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4614 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 <= 9.5, c3 > 3.0, c1 > 9.5, c2 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4615 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 <= 9.5, c3 > 3.0, c1 > 9.5, c2 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4618 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 > 9.5, c1 > 1.5, c2 <= 5.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4619 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 3, c5 > 9.5, c1 > 1.5, c2 <= 5.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4620 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 > 13, c1 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4621 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 > 13, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 2.0, c3 <= 12.5, c4 > 7.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4626 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 2.0, c3 > 12.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4627 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 2.0, c3 > 12.5, c4 <= 7.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4628 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 2.0, c3 > 12.5, c4 <= 7.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4629 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 <= 2.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4630 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 <= 2.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4632 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 <= 10.0, c3 <= 1.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4634 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 <= 10.0, c3 > 1.5, c1 <= 4.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4638 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 > 10.0, c3 > 7.0, c1 <= 9.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4639 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 > 10.0, c3 > 7.0, c1 > 9.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4640 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 > 10.0, c3 > 7.0, c1 > 9.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4641 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 > 10.0, c3 <= 7.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4642 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 4, s3 == 1, c4 > 1.0, c2 > 10.0, c3 <= 7.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4644 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 <= 4.5, c1 <= 12.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4645 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 <= 4.5, c1 <= 12.0, c2 <= 13, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 <= 4.5, c1 <= 12.0, c2 <= 13, c3 <= 13, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4648 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 <= 4.5, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4649 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 > 4.5, c1 > 2.0, c2 <= 6.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4651 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 > 4.5, c1 > 2.0, c2 <= 6.0, c3 <= 7.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4652 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 4, c5 > 4.5, c1 > 2.0, c2 > 6.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4657 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 3, c1 > 1.0, c2 > 4.0, c3 <= 9.0, c4 > 2.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4659 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 3, c1 > 1.0, c2 > 4.0, c3 > 9.0, c4 > 2.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4661 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 3, c1 > 1.0, c2 > 4.0, c3 > 9.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4664 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 2, c3 <= 3.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4665 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 2, c3 <= 3.0, c1 <= 13, c2 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4666 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 2, c3 <= 3.0, c1 <= 13, c2 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4667 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 2, c3 > 3.0, c1 > 2.0, c2 > 13, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4668 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 2, c3 > 3.0, c1 > 2.0, c2 > 13, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4670 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 2, c3 > 3.0, c1 > 2.0, c2 <= 13, c4 <= 12.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4673 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 1, c2 <= 10.0, c5 <= 12.5, c1 > 13, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4674 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 1, c2 <= 10.0, c5 <= 12.5, c1 > 13, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4678 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 1, c2 <= 10.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4680 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 3, s3 == 1, c2 > 10.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4683 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c5 > 2.0, c3 <= 12.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4685 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4686 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 4, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4688 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 3, c3 <= 8.0, c1 > 1.5, c2 <= 12.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 3, c3 <= 8.0, c1 > 1.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4693 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 3, c3 > 8.0, c4 <= 2.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4694 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 3, c3 > 8.0, c4 <= 2.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4695 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 <= 10.0, c5 <= 9.0, c1 <= 2.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 <= 10.0, c5 <= 9.0, c1 <= 2.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4697 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 <= 10.0, c5 <= 9.0, c1 > 2.5, c2 <= 5.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4698 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 <= 10.0, c5 <= 9.0, c1 > 2.5, c2 <= 5.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4699 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 <= 10.0, c5 <= 9.0, c1 > 2.5, c2 > 5.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4702 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 <= 10.0, c5 > 9.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4703 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 > 10.0, c1 <= 10.0, c2 <= 10.5, c4 <= 9.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4704 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 > 10.0, c1 <= 10.0, c2 <= 10.5, c4 <= 9.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4705 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 > 10.0, c1 <= 10.0, c2 <= 10.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4706 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 2, c3 > 10.0, c1 <= 10.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4710 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 <= 11.0, c1 > 2.0, c2 <= 11.0, c3 <= 2.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4711 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 <= 11.0, c1 > 2.0, c2 <= 11.0, c3 <= 2.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 <= 11.0, c1 <= 2.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4714 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 <= 11.0, c1 <= 2.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4715 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 > 11.0, c1 <= 5.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4716 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 > 11.0, c1 <= 5.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 > 11.0, c1 > 5.5, c3 <= 11.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4719 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 > 11.0, c1 > 5.5, c3 <= 11.5, c2 > 8.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4720 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 2, s3 == 1, c5 > 11.0, c1 > 5.5, c3 <= 11.5, c2 > 8.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4722 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 <= 11.0, c1 > 1.0, c4 <= 4.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4723 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 <= 11.0, c1 > 1.0, c4 > 4.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4726 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 <= 11.0, c1 <= 1.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4727 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 > 11.0, c1 <= 12.0, c4 <= 5.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4728 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 > 11.0, c1 <= 12.0, c4 <= 5.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4729 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 > 11.0, c1 <= 12.0, c4 > 5.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4730 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 > 11.0, c1 <= 12.0, c4 > 5.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4731 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 > 11.0, c1 > 12.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4732 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 > 2.0, c3 > 11.0, c1 > 12.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4734 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 4, c2 <= 2.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4735 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4736 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 <= 4.5, c4 > 6.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4739 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 <= 4.5, c4 <= 6.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4740 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 > 4.5, c3 > 7.0, c4 <= 5.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4741 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 > 4.5, c3 > 7.0, c4 <= 5.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 3, c2 > 1.5, c1 > 4.5, c3 > 7.0, c4 > 5.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4747 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 <= 1.5, c2 <= 8, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4748 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 <= 1.5, c2 <= 8, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4749 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 <= 1.5, c2 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4750 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 > 1.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4751 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 > 1.5, c3 <= 13, c2 <= 3.0, c4 <= 12.0, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4752 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 > 1.5, c3 <= 13, c2 <= 3.0, c4 <= 12.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4753 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 > 1.5, c3 <= 13, c2 <= 3.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4756 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 2, c1 > 1.5, c3 <= 13, c2 > 3.0, c4 <= 11.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 1, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4758 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 1, c1 > 3.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4760 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 1, c1 > 3.5, c4 > 1.5, c5 > 1.0, c2 <= 11.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4762 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 4, s2 == 1, s3 == 1, c1 > 3.5, c4 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4763 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 <= 10.5, c1 <= 8.0, c5 <= 4.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4764 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 <= 10.5, c1 <= 8.0, c5 <= 4.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4766 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 <= 10.5, c1 > 8.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4767 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 <= 10.5, c1 > 8.0, c3 > 1.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4769 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 > 10.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4770 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 > 10.5, c1 > 5.0, c3 <= 4.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4771 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 > 10.5, c1 > 5.0, c3 <= 4.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4772 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 > 10.5, c1 > 5.0, c3 > 4.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4773 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 > 1.0, c2 > 10.5, c1 > 5.0, c3 > 4.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4774 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 4, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 3, c5 <= 12, c4 <= 10.0, c3 > 3.5, c1 > 7.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4781 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 3, c5 <= 12, c4 > 10.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4782 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 <= 11.0, c5 <= 7.5, c4 <= 12.0, c2 <= 2.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4789 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 <= 11.0, c5 > 7.5, c3 <= 11.5, c4 > 5.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4792 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 2, c1 > 11.0, c4 <= 4.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4794 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 > 2.0, c4 <= 2.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4796 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 > 2.0, c4 > 2.0, c2 > 2.0, c3 <= 1.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4797 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 > 2.0, c4 > 2.0, c2 > 2.0, c3 <= 1.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4798 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 > 2.0, c4 > 2.0, c2 > 2.0, c3 > 1.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 > 2.0, c4 > 2.0, c2 <= 2.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4801 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 > 2.0, c4 > 2.0, c2 <= 2.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4802 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 <= 2.0, c2 <= 11.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 <= 2.0, c2 <= 11.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 4, s2 == 1, c1 <= 2.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4806 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 4, c5 <= 10.5, c4 > 2.5, c1 <= 3.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4807 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 4, c5 <= 10.5, c4 > 2.5, c1 <= 3.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4808 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 4, c5 <= 10.5, c4 > 2.5, c1 > 3.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 4, c5 > 10.5, c4 <= 7.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4817 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 3, c4 > 1.0, c2 <= 1.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 3, c4 > 1.0, c2 <= 1.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4819 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 3, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4821 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 2, c1 > 3.5, c2 > 2.0, c4 <= 1.5, c3 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 2, c1 > 3.5, c2 > 2.0, c4 > 1.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4826 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 2, c1 > 3.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4830 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 <= 10.0, c5 > 1.0, c3 > 10.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4831 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 <= 10.0, c5 <= 1.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4832 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 <= 10.0, c5 <= 1.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4833 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 > 10.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4834 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 > 1.0, c1 > 10.0, c2 > 4.0, c5 <= 9.5, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4837 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 3, s2 == 1, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4838 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 <= 11.0, c5 <= 12.5, c2 > 11.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4839 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 <= 11.0, c5 <= 12.5, c2 > 11.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 <= 11.0, c5 <= 12.5, c2 <= 11.5, c3 <= 3.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4842 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 <= 11.0, c5 <= 12.5, c2 <= 11.5, c3 > 3.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4845 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 > 11.0, c2 <= 3.0, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 > 11.0, c2 <= 3.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4847 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 > 11.0, c2 > 3.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4848 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 > 11.0, c2 > 3.0, c3 <= 6.5, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4849 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 4, c1 > 11.0, c2 > 3.0, c3 <= 6.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4851 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 <= 10.0, c1 > 2.0, c2 > 3.5, c5 <= 12.5, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4855 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 > 10.0, c5 <= 12.5, c1 > 2.0, c2 <= 4.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4856 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 > 10.0, c5 <= 12.5, c1 > 2.0, c2 <= 4.5, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4858 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 > 10.0, c5 <= 12.5, c1 > 2.0, c2 > 4.5, c3 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4859 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 > 10.0, c5 <= 12.5, c1 <= 2.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4860 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 > 10.0, c5 <= 12.5, c1 <= 2.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4861 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 3, c4 > 10.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4862 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4863 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c5 > 1.5, c3 <= 3.0, c1 <= 11.0, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4864 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c5 > 1.5, c3 <= 3.0, c1 <= 11.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4865 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c5 > 1.5, c3 <= 3.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4868 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c5 > 1.5, c3 > 3.0, c1 > 10.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4869 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c5 > 1.5, c3 > 3.0, c1 > 10.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4870 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 2, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4871 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 > 2.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4872 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 > 2.0, c5 <= 13, c4 > 11.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4873 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 > 2.0, c5 <= 13, c4 > 11.5, c2 <= 7.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4874 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 > 2.0, c5 <= 13, c4 > 11.5, c2 <= 7.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4878 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 <= 2.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4879 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 <= 2.0, c2 <= 9.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4880 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 2, s2 == 1, c1 <= 2.0, c2 <= 9.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4881 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 <= 10.0, c2 <= 1.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 <= 10.0, c2 <= 1.5, c3 > 4.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4884 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 <= 10.0, c2 <= 1.5, c3 > 4.5, c4 > 5.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4886 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 <= 10.0, c2 > 1.5, c3 > 3.0, c5 <= 10.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4890 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 > 10.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4892 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 > 10.0, c5 > 4.5, c2 <= 7.5, c3 <= 11.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4894 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 4, c1 > 10.0, c5 > 4.5, c2 <= 7.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4895 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 3, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4896 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 3, c1 <= 13, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4897 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 3, c1 <= 13, c4 <= 12, c2 > 1.0, c3 <= 1.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4898 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 3, c1 <= 13, c4 <= 12, c2 > 1.0, c3 <= 1.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4902 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 <= 3.0, c2 <= 12.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4905 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 <= 3.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4911 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 > 1.0, c5 > 3.0, c1 > 9.5, c2 > 3.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4912 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 2, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4913 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 <= 6.5, c5 <= 4.5, c2 > 2.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4914 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 <= 6.5, c5 <= 4.5, c2 > 2.5, c1 > 9.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 <= 6.5, c5 <= 4.5, c2 > 2.5, c1 > 9.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4916 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 <= 6.5, c5 <= 4.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#4918 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 > 6.5, c5 <= 9.0, c1 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4919 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 > 6.5, c5 <= 9.0, c1 <= 11, c2 > 7.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4920 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 > 6.5, c5 <= 9.0, c1 <= 11, c2 > 7.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#4921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 3, s3 == 1, s2 == 1, c3 > 6.5, c5 <= 9.0, c1 <= 11, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4923 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 <= 12.5, c1 > 1.0, c3 > 1.0, c4 <= 1.5, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4924 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 <= 12.5, c1 > 1.0, c3 > 1.0, c4 <= 1.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4927 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 <= 12.5, c1 > 1.0, c3 <= 1.0, c2 <= 4.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4928 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 <= 12.5, c1 > 1.0, c3 <= 1.0, c2 <= 4.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4929 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 <= 12.5, c1 > 1.0, c3 <= 1.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4930 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 <= 12.5, c1 <= 1.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4931 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 <= 12.5, c1 <= 1.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4933 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 4, c5 > 12.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4935 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 <= 8.0, c3 <= 9.5, c4 <= 4.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 <= 8.0, c3 <= 9.5, c4 > 4.0, c1 > 5.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4939 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 <= 8.0, c3 <= 9.5, c4 > 4.0, c1 <= 5.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4940 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 <= 8.0, c3 <= 9.5, c4 > 4.0, c1 <= 5.5, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4941 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 > 8.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4942 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 > 8.0, c4 > 2.5, c3 <= 3.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4943 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 > 8.0, c4 > 2.5, c3 <= 3.0, c1 <= 11.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 > 8.0, c4 > 2.5, c3 <= 3.0, c1 <= 11.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4945 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 > 8.0, c4 > 2.5, c3 > 3.0, c1 <= 4.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4946 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 3, c5 > 8.0, c4 > 2.5, c3 > 3.0, c1 <= 4.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4950 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 > 11.5, c2 <= 11.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4951 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 > 11.5, c2 <= 11.5, c1 <= 9.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4952 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 > 11.5, c2 <= 11.5, c1 <= 9.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4953 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 <= 11.5, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4955 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 2, c3 <= 11.5, c1 <= 12, c4 > 11.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4959 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 <= 4.0, c5 <= 7.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4960 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 <= 4.0, c5 <= 7.5, c1 <= 4.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4961 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 <= 4.0, c5 <= 7.5, c1 <= 4.0, c2 <= 7.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4962 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 <= 4.0, c5 <= 7.5, c1 <= 4.0, c2 <= 7.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4965 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 <= 4.0, c5 > 7.5, c1 > 5.5, c2 > 5.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4966 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 <= 4.0, c5 > 7.5, c1 > 5.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4968 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 > 4.0, c5 > 2.5, c1 <= 7.5, c2 <= 12.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4970 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 > 4.0, c5 > 2.5, c1 <= 7.5, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4971 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 4, s2 == 1, c3 > 4.0, c5 > 2.5, c1 > 7.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4979 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 4, c1 > 4.0, c4 > 12.5, c2 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4980 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 4, c1 > 4.0, c4 > 12.5, c2 <= 9, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4981 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 4, c1 > 4.0, c4 > 12.5, c2 <= 9, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4983 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 > 7.0, c3 > 5.0, c1 <= 12.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4986 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 > 7.0, c3 > 5.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4987 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 <= 7.0, c2 > 2.0, c1 <= 5.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4988 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 <= 7.0, c2 > 2.0, c1 <= 5.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4989 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 <= 7.0, c2 > 2.0, c1 > 5.0, c3 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4991 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 <= 7.0, c2 > 2.0, c1 > 5.0, c3 <= 9, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4992 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 <= 7.0, c2 <= 2.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4993 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 3, c5 <= 7.0, c2 <= 2.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#4994 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 <= 1.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#4995 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 <= 1.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#4996 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 > 1.5, c1 <= 8.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#4997 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 > 1.5, c1 <= 8.0, c4 <= 13, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5000 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 > 1.5, c1 > 8.0, c5 <= 5.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5001 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 > 1.5, c1 > 8.0, c5 <= 5.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5002 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 2, c3 > 1.5, c1 > 8.0, c5 > 5.0, c2 <= 10.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5005 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 <= 4.5, c5 <= 8.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5006 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 <= 4.5, c5 <= 8.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5007 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 <= 4.5, c5 > 8.5, c1 <= 9.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5008 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 <= 4.5, c5 > 8.5, c1 <= 9.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5010 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 > 4.5, c1 <= 6.5, c3 <= 8.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5011 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 > 4.5, c1 <= 6.5, c3 <= 8.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5012 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 > 4.5, c1 <= 6.5, c3 > 8.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5014 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 > 4.5, c1 > 6.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5015 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 > 1.0, c2 > 4.5, c1 > 6.5, c5 > 1.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5017 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 3, s2 == 1, c4 <= 1.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5019 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 <= 3.5, c1 <= 5.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5020 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 <= 3.5, c1 <= 5.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5021 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 <= 3.5, c1 > 5.0, c3 <= 5.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5025 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 > 3.5, c3 > 3.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5026 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 4, c4 > 3.5, c3 > 3.0, c1 <= 13, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5030 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 3, c1 > 1.5, c4 > 2.0, c3 <= 1.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5035 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 3, c1 > 1.5, c4 <= 2.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5036 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 3, c1 > 1.5, c4 <= 2.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5037 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 > 3.5, c1 <= 8.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5038 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 > 3.5, c1 <= 8.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5039 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 > 3.5, c1 > 8.0, c3 <= 6.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5040 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 > 3.5, c1 > 8.0, c3 <= 6.5, c2 <= 6.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5041 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 > 3.5, c1 > 8.0, c3 <= 6.5, c2 <= 6.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5043 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 > 3.5, c1 > 8.0, c3 > 6.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5044 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 2, c4 <= 3.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5047 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 1, c5 > 1.0, c2 <= 9.0, c1 <= 11.0, c3 > 2.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5049 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 1, c5 > 1.0, c2 <= 9.0, c1 <= 11.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5051 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 1, c5 > 1.0, c2 > 9.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5053 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 1, c5 > 1.0, c2 > 9.0, c3 > 1.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5054 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 2, s2 == 1, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5055 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 4, c1 > 2.0, c2 <= 1.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5056 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 4, c1 > 2.0, c2 <= 1.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5057 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 4, c1 > 2.0, c2 > 1.5, c3 > 13, c4 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 4, c1 > 2.0, c2 > 1.5, c3 > 13, c4 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5059 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 4, c1 > 2.0, c2 > 1.5, c3 <= 13, c4 <= 2.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5060 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 4, c1 > 2.0, c2 > 1.5, c3 <= 13, c4 <= 2.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5063 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 4, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5065 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 3, c1 <= 6.5, c2 <= 3.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5069 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 3, c1 > 6.5, c4 > 1.0, c2 > 1.5, c5 <= 8.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5072 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 3, c1 > 6.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5077 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 2, c1 > 2.0, c2 > 2.5, c3 <= 13, c4 <= 1.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 2, c1 > 2.0, c2 > 2.5, c3 <= 13, c4 <= 1.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5080 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 1, c1 > 5.5, c3 <= 5.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5081 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 1, c1 > 5.5, c3 <= 5.0, c2 <= 11.5, c4 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5082 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 1, c1 > 5.5, c3 <= 5.0, c2 <= 11.5, c4 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5084 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 2, s3 == 1, s2 == 1, c1 <= 5.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5086 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 <= 5.0, c2 <= 1.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5087 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 <= 5.0, c2 <= 1.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 <= 5.0, c2 > 1.5, c3 > 2.5, c5 <= 5.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5089 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 <= 5.0, c2 > 1.5, c3 > 2.5, c5 <= 5.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5093 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 > 5.0, c2 <= 11.5, c5 <= 4.5, c3 > 7.5, c4 <= 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5094 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 > 5.0, c2 <= 11.5, c5 <= 4.5, c3 > 7.5, c4 > 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5096 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 4, c1 > 5.0, c2 <= 11.5, c5 <= 4.5, c3 <= 7.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5103 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 <= 10.0, c1 > 3.5, c2 <= 11.5, c5 > 5.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5104 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 <= 10.0, c1 > 3.5, c2 <= 11.5, c5 <= 5.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5105 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 <= 10.0, c1 > 3.5, c2 <= 11.5, c5 <= 5.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5106 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 <= 10.0, c1 <= 3.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5107 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 <= 10.0, c1 <= 3.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5108 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 > 10.0, c1 <= 9.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5109 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 > 10.0, c1 <= 9.5, c2 > 4.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5111 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 > 10.0, c1 > 9.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#5112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 3, c3 > 10.0, c1 > 9.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5113 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 2, c1 > 11.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5114 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 2, c1 > 11.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5115 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 2, c1 <= 11.5, c2 > 1.0, c5 > 2.0, c3 <= 12.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5117 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 2, c1 <= 11.5, c2 > 1.0, c5 > 2.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5119 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 2, c1 <= 11.5, c2 <= 1.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5120 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 2, c1 <= 11.5, c2 <= 1.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5121 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 <= 9.5, c5 <= 3.0, c1 <= 7, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 <= 9.5, c5 <= 3.0, c1 <= 7, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5123 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 <= 9.5, c5 <= 3.0, c1 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5124 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 <= 9.5, c5 > 3.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5130 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 > 9.5, c5 > 6.0, c2 <= 12.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5131 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 > 9.5, c5 > 6.0, c2 <= 12.0, c1 > 3.5, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5132 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 4, s2 == 1, c3 > 9.5, c5 > 6.0, c2 <= 12.0, c1 > 3.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5140 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 4, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5141 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 <= 3.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5142 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 <= 3.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5143 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 > 3.0, c2 > 4.5, c3 <= 12.5, c5 <= 2.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5144 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 > 3.0, c2 > 4.5, c3 <= 12.5, c5 <= 2.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5147 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 > 3.0, c2 > 4.5, c3 > 12.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5148 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 > 3.0, c2 > 4.5, c3 > 12.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 > 3.0, c2 <= 4.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5150 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 3, c1 > 3.0, c2 <= 4.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5153 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 1.0, c3 <= 11.0, c4 <= 1.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5154 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 1.0, c3 <= 11.0, c4 <= 1.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 2, c1 > 11.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5158 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 2, c1 > 11.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5160 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 1, c4 <= 9.5, c1 <= 10.0, c5 <= 5.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 1, c4 <= 9.5, c1 > 10.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5164 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 1, c4 <= 9.5, c1 > 10.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5165 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 1, c4 > 9.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5166 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 1, c4 > 9.5, c1 <= 13, c2 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5167 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 3, s2 == 1, c4 > 9.5, c1 <= 13, c2 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 <= 8.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5169 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 <= 8.0, c1 > 1.5, c3 <= 3.0, c4 <= 10.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5170 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 <= 8.0, c1 > 1.5, c3 <= 3.0, c4 <= 10.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5171 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 <= 8.0, c1 > 1.5, c3 <= 3.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 <= 8.0, c1 > 1.5, c3 > 3.0, c4 <= 10.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 <= 8.0, c1 > 1.5, c3 > 3.0, c4 > 10.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5175 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 <= 8.0, c1 > 1.5, c3 > 3.0, c4 > 10.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 > 8.0, c5 > 2.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5177 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 > 8.0, c5 > 2.0, c3 > 4.0, c1 > 8.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5178 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 > 8.0, c5 > 2.0, c3 > 4.0, c1 > 8.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5179 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 > 8.0, c5 > 2.0, c3 > 4.0, c1 <= 8.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5180 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 > 8.0, c5 > 2.0, c3 > 4.0, c1 <= 8.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5181 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 4, c2 > 8.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 <= 12.5, c2 <= 2.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5183 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 <= 12.5, c2 <= 2.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 <= 12.5, c2 > 2.5, c3 > 11.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5185 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 <= 12.5, c2 > 2.5, c3 > 11.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5187 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 <= 12.5, c2 > 2.5, c3 <= 11.5, c5 <= 4.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5189 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 <= 12.5, c2 > 2.5, c3 <= 11.5, c5 > 4.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5190 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 > 12.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5191 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 3, c1 > 12.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5192 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 2, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5193 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 2, c2 > 3.5, c3 > 1.5, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5194 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 2, c2 > 3.5, c3 > 1.5, c1 <= 12, c4 <= 12.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5196 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 2, c2 > 3.5, c3 > 1.5, c1 <= 12, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5198 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 1, c2 > 1.0, c5 <= 3.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5200 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 1, c2 > 1.0, c5 > 3.0, c3 > 1.0, c1 <= 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5201 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 1, c2 > 1.0, c5 > 3.0, c3 > 1.0, c1 <= 2.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5202 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 1, c2 > 1.0, c5 > 3.0, c3 > 1.0, c1 > 2.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5205 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 2, s2 == 1, c2 <= 1.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5207 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5210 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 > 7.0, c3 > 2.0, c1 > 7.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5212 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 > 7.0, c3 <= 2.0, c1 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5213 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 > 7.0, c3 <= 2.0, c1 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5214 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 <= 7.0, c3 > 11.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5215 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 <= 7.0, c3 > 11.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5216 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 <= 7.0, c3 <= 11.5, c1 <= 6.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 <= 7.0, c3 <= 11.5, c1 <= 6.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5218 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 4, c2 > 3.0, c5 <= 7.0, c3 <= 11.5, c1 > 6.5, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5221 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 > 11.5, c3 <= 5.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5222 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 > 11.5, c3 <= 5.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5223 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 <= 11.5, c4 <= 3.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5224 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 <= 11.5, c4 <= 3.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5225 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 <= 11.5, c4 > 3.0, c5 <= 9.5, c2 <= 12.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5227 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 <= 11.5, c4 > 3.0, c5 <= 9.5, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5228 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 <= 11.5, c4 > 3.0, c5 > 9.5, c2 <= 2.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5229 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 3, c1 <= 11.5, c4 > 3.0, c5 > 9.5, c2 <= 2.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5232 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 2, c3 <= 11.0, c1 > 4.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5236 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 2, c3 > 11.0, c1 <= 9.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5237 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 2, c3 > 11.0, c1 <= 9.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5240 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 <= 10.5, c1 <= 6.5, c3 <= 4.0, c2 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5241 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 <= 10.5, c1 <= 6.5, c3 <= 4.0, c2 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5243 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 <= 10.5, c1 > 6.5, c3 > 2.5, c2 <= 7.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5244 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 <= 10.5, c1 > 6.5, c3 > 2.5, c2 <= 7.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5247 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 3, s1 == 1, s5 == 1, s3 == 1, s2 == 1, c5 > 10.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5249 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c3 > 1.0, c2 <= 6.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5251 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c3 > 1.0, c2 > 6.5, c1 <= 9.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c3 > 1.0, c2 > 6.5, c1 <= 9.0, c4 <= 9.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5255 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 7.5, c3 <= 3.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 7.5, c3 <= 3.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5258 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 7.5, c3 > 3.0, c5 <= 3.5, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5259 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 7.5, c3 > 3.0, c5 <= 3.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5260 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 7.5, c3 > 3.0, c5 > 3.5, c1 <= 4.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5262 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 7.5, c3 > 3.0, c5 > 3.5, c1 > 4.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5265 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 7.5, c1 <= 5.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5266 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 7.5, c1 > 5.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5267 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 7.5, c1 > 5.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5268 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5269 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 > 1.5, c3 <= 3.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5270 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 > 1.5, c3 <= 3.0, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5271 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 > 1.5, c3 > 3.0, c2 <= 6.5, c4 <= 5.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5272 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 > 1.5, c3 > 3.0, c2 <= 6.5, c4 <= 5.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5274 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 > 1.5, c3 > 3.0, c2 > 6.5, c1 <= 3.5, c4 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5275 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 > 1.5, c3 > 3.0, c2 > 6.5, c1 <= 3.5, c4 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c5 > 1.5, c3 > 3.0, c2 > 6.5, c1 > 3.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5279 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 <= 3.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5281 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 <= 6.0, c2 <= 6.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5282 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 <= 6.0, c2 > 6.0, c1 <= 11.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5283 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 <= 6.0, c2 > 6.0, c1 <= 11.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5286 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 > 6.0, c2 > 3.5, c1 <= 4.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5287 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 > 6.0, c2 > 3.5, c1 <= 4.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5288 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c3 > 3.0, c5 > 6.0, c2 > 3.5, c1 > 4.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5290 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c4 <= 13, c1 > 2.0, c5 <= 11.0, c2 > 3.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5294 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c4 <= 13, c1 > 2.0, c5 > 11.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5295 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c4 <= 13, c1 > 2.0, c5 > 11.0, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5296 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c4 <= 13, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5298 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c5 > 2.5, c1 > 1.0, c2 <= 10.0, c4 <= 5.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5299 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c5 > 2.5, c1 > 1.0, c2 <= 10.0, c4 <= 5.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5302 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c5 > 2.5, c1 > 1.0, c2 > 10.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5305 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5306 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 13, c2 > 1.0, c5 <= 6.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5308 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 13, c2 > 1.0, c5 <= 6.5, c3 <= 13, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 13, c2 > 1.0, c5 > 6.5, c3 > 1.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5311 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 13, c2 > 1.0, c5 > 6.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 13, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5314 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 > 1.0, c2 > 2.0, c5 <= 12.0, c3 <= 11.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5316 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 > 1.0, c2 > 2.0, c5 > 12.0, c3 <= 10.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 > 1.0, c2 > 2.0, c5 > 12.0, c3 <= 10.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 > 1.0, c2 > 2.0, c5 > 12.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5319 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 > 1.0, c2 <= 2.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5320 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 > 1.0, c2 <= 2.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5321 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 <= 1.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5322 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c1 <= 1.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5325 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 <= 12.0, c5 <= 13, c2 > 2.0, c3 <= 9.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 <= 12.0, c5 <= 13, c2 <= 2.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5329 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 <= 12.0, c5 <= 13, c2 <= 2.0, c3 <= 5.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5330 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 <= 12.0, c5 <= 13, c2 <= 2.0, c3 <= 5.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5332 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c1 > 12.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5335 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c2 > 1.0, c4 > 1.0, c5 > 1.0, c1 <= 11.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5337 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c2 > 1.0, c4 > 1.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5338 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c2 > 1.0, c4 <= 1.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5339 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c2 > 1.0, c4 <= 1.0, c1 <= 6.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5340 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c2 > 1.0, c4 <= 1.0, c1 <= 6.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5341 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5344 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 1.5, c2 > 2.0, c3 > 1.5, c4 > 2.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5346 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 1.5, c2 > 2.0, c3 > 1.5, c4 <= 2.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5350 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 <= 5.0, c3 <= 7.5, c1 <= 10.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5351 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 <= 5.0, c3 <= 7.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5353 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 > 5.0, c2 <= 10.5, c1 > 11.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5354 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 > 5.0, c2 <= 10.5, c1 > 11.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5355 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 > 5.0, c2 <= 10.5, c1 <= 11.5, c3 <= 4.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5356 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 > 5.0, c2 <= 10.5, c1 <= 11.5, c3 <= 4.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5357 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c4 > 5.0, c2 <= 10.5, c1 <= 11.5, c3 > 4.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5361 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 <= 4.5, c2 <= 3.0, c1 <= 7.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5362 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 <= 4.5, c2 <= 3.0, c1 <= 7.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5364 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 <= 4.5, c2 > 3.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5365 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 <= 4.5, c2 > 3.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5366 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 > 4.5, c1 > 1.0, c2 <= 3.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5367 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 > 4.5, c1 > 1.0, c2 <= 3.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5370 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 12.5, c4 > 4.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5371 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5375 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 > 4.5, c2 <= 2.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5376 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 > 4.5, c2 <= 2.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5378 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 > 4.5, c2 > 2.5, c3 > 1.5, c4 <= 8.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5380 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c1 > 4.5, c2 > 2.5, c3 > 1.5, c4 > 8.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5382 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 > 11.5, c1 <= 12.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5383 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 > 11.5, c1 <= 12.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5384 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 > 11.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5387 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 <= 11.5, c2 > 2.0, c4 <= 3.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5388 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 <= 11.5, c2 > 2.0, c4 > 3.0, c5 <= 8.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5389 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 <= 11.5, c2 > 2.0, c4 > 3.0, c5 <= 8.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5392 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c3 <= 11.5, c2 <= 2.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5395 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c2 <= 7.0, c4 > 2.0, c1 <= 3.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5396 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c2 <= 7.0, c4 > 2.0, c1 <= 3.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5398 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c2 <= 7.0, c4 > 2.0, c1 > 3.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5399 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c2 <= 7.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5400 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 <= 12.0, c3 <= 2.5, c1 <= 9.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5401 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 <= 12.0, c3 <= 2.5, c1 <= 9.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5402 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 <= 12.0, c3 <= 2.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5403 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 <= 12.0, c3 > 2.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5407 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 <= 12.0, c3 > 2.5, c1 <= 13, c4 > 11.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5408 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c2 > 12.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5411 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c3 > 1.5, c4 > 13, c1 <= 11.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5412 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c3 > 1.5, c4 > 13, c1 <= 11.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5413 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c3 > 1.5, c4 > 13, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5414 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c3 > 1.5, c4 <= 13, c1 > 2.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5418 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 1.0, c1 > 1.0, c5 <= 1.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5419 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 1.0, c1 > 1.0, c5 <= 1.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5422 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 1.0, c1 > 1.0, c5 > 1.5, c3 <= 1.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5423 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 1.0, c1 > 1.0, c5 > 1.5, c3 <= 1.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5424 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 1.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5425 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#5426 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c5 <= 12.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5429 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c5 <= 12.5, c2 > 1.5, c1 <= 9.0, c4 > 3.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c5 <= 12.5, c2 > 1.5, c1 > 9.0, c3 <= 7.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5434 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 <= 9.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 <= 9.5, c1 <= 13, c5 > 8.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5440 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 > 9.5, c4 > 9.5, c1 <= 6.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5441 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 > 9.5, c4 > 9.5, c1 <= 6.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5442 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 > 9.5, c4 > 9.5, c1 > 6.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5443 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 > 1.0, c2 > 9.5, c4 > 9.5, c1 > 6.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5444 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 > 8.5, c4 > 3.0, c3 > 3.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5448 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 > 8.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5449 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 <= 8.5, c5 <= 10.0, c3 > 2.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5451 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 <= 8.5, c5 <= 10.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5452 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 <= 8.5, c5 > 10.0, c3 > 1.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5454 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 > 2.0, c1 <= 8.5, c5 > 10.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5455 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 <= 2.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5456 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c2 <= 2.0, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5457 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 <= 11.0, c1 > 1.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5458 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 <= 11.0, c1 > 1.0, c4 <= 13, c2 <= 3.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5459 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 <= 11.0, c1 > 1.0, c4 <= 13, c2 <= 3.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5463 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 <= 11.0, c1 <= 1.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 > 11.0, c5 <= 9.5, c1 <= 10.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5465 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 > 11.0, c5 <= 9.5, c1 <= 10.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5466 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 > 11.0, c5 <= 9.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5467 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 > 11.0, c5 > 9.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5468 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c3 > 11.0, c5 > 9.5, c1 <= 6.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5470 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c3 <= 12.0, c2 > 1.0, c1 > 1.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5473 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c3 <= 12.0, c2 > 1.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5474 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c3 <= 12.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5475 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c3 > 12.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5476 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c3 > 12.0, c1 > 9.0, c2 <= 8, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5477 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c3 > 12.0, c1 > 9.0, c2 <= 8, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5478 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c3 > 12.0, c1 > 9.0, c2 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5479 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 <= 1.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5480 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 <= 1.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 > 1.5, c3 <= 5.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5482 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 > 1.5, c3 <= 5.5, c1 <= 7.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5483 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 > 1.5, c3 <= 5.5, c1 <= 7.5, c2 <= 8.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5484 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 > 1.5, c3 <= 5.5, c1 <= 7.5, c2 <= 8.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5485 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 > 1.5, c3 > 5.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5486 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 > 1.5, c3 > 5.5, c1 <= 13, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5488 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c4 > 1.5, c3 > 5.5, c1 <= 13, c2 > 1.5, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5489 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c4 <= 12.0, c5 <= 11.0, c3 > 1.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5495 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c4 > 12.0, c1 <= 9.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5496 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c4 > 12.0, c1 <= 9.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5498 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 > 13, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5499 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 > 13, c3 > 5.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5500 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 > 13, c3 > 5.5, c4 <= 8.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c1 > 1.0, c2 > 13, c3 > 5.5, c4 <= 8.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5509 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 <= 8.0, c5 <= 12.0, c1 > 2.0, c2 <= 3.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5510 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 <= 8.0, c5 <= 12.0, c1 > 2.0, c2 <= 3.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5511 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 <= 8.0, c5 <= 12.0, c1 > 2.0, c2 > 3.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5519 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 > 8.0, c2 > 1.5, c4 > 1.0, c1 <= 5.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5520 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c3 > 8.0, c2 > 1.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5521 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 12.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5524 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c1 > 1.0, c4 <= 12.0, c5 <= 13, c3 <= 2.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5526 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c1 > 1.0, c4 > 12.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5528 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5530 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 > 1.0, c4 <= 10.5, c1 > 2.0, c5 > 1.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5531 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 > 1.0, c4 <= 10.5, c1 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5535 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 > 1.0, c4 > 10.5, c3 <= 7.0, c1 <= 11.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5536 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 > 1.0, c4 > 10.5, c3 <= 7.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5537 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 1.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5538 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 1.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5539 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 > 13, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5540 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 > 13, c1 > 9.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5541 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 > 13, c1 > 9.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5542 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 <= 13, c2 <= 1.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5543 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 <= 13, c2 <= 1.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5544 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 <= 13, c2 > 1.5, c4 <= 4.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5546 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 <= 13, c2 > 1.5, c4 <= 4.0, c5 > 2.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5547 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 <= 13, c2 > 1.5, c4 > 4.0, c5 <= 2.5, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c3 <= 13, c2 > 1.5, c4 > 4.0, c5 > 2.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5551 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 7.0, c1 <= 12.0, c2 <= 12.0, c4 <= 11.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5552 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 7.0, c1 <= 12.0, c2 <= 12.0, c4 <= 11.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5553 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 7.0, c1 <= 12.0, c2 <= 12.0, c4 > 11.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5554 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 7.0, c1 <= 12.0, c2 <= 12.0, c4 > 11.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5555 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 7.0, c1 <= 12.0, c2 > 12.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5556 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 7.0, c1 <= 12.0, c2 > 12.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 7.0, c1 > 12.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5558 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 7.0, c1 > 12.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5559 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 <= 7.0, c4 <= 3.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5560 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 <= 7.0, c4 <= 3.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5561 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 <= 7.0, c4 > 3.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5564 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 <= 7.0, c4 > 3.0, c1 <= 13, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5566 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 <= 8.0, c2 <= 9.5, c1 > 3.5, c3 <= 9.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5567 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 <= 8.0, c2 <= 9.5, c1 > 3.5, c3 <= 9.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 <= 8.0, c2 <= 9.5, c1 > 3.5, c3 > 9.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5571 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 > 8.0, c1 <= 5.0, c2 <= 8.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5572 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 > 8.0, c1 <= 5.0, c2 <= 8.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5573 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 > 8.0, c1 <= 5.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5574 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 > 8.0, c1 > 5.0, c2 <= 9.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5575 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 > 8.0, c1 > 5.0, c2 <= 9.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5576 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 4, c5 > 8.0, c1 > 5.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5577 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 <= 5.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5580 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 <= 5.0, c1 > 5.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5581 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 > 5.0, c1 > 5.5, c4 > 1.0, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5583 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 > 5.0, c1 > 5.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5586 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 > 5.0, c1 <= 5.5, c4 <= 1.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5587 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 > 1.0, c3 > 5.0, c1 <= 5.5, c4 <= 1.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5588 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 3, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5590 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 <= 3.5, c3 > 7.0, c4 <= 6.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5591 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 <= 3.5, c3 > 7.0, c4 <= 6.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5592 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 <= 3.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5596 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 > 3.5, c5 <= 6.0, c3 > 4.0, c4 > 10.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5597 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 > 3.5, c5 <= 6.0, c3 > 4.0, c4 > 10.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5598 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 > 3.5, c5 > 6.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5601 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 2, c1 > 3.5, c5 > 6.0, c3 > 2.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5602 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 1, c2 <= 12.5, c1 <= 2.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5603 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 1, c2 <= 12.5, c1 <= 2.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5609 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 1, c2 > 12.5, c3 <= 2.5, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5610 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 4, s3 == 1, c2 > 12.5, c3 <= 2.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5611 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 > 1.0, c1 <= 4.0, c5 <= 6.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5612 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 > 1.0, c1 <= 4.0, c5 <= 6.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5613 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 > 1.0, c1 <= 4.0, c5 > 6.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5614 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 > 1.0, c1 <= 4.0, c5 > 6.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5616 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 > 1.0, c1 > 4.0, c2 <= 5.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 <= 1.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5620 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 > 1.0, c3 <= 1.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5621 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 4, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5622 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 3, c3 <= 11.0, c1 <= 1.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5623 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 3, c3 <= 11.0, c1 <= 1.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5624 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 3, c3 <= 11.0, c1 > 1.5, c2 <= 2.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 3, c3 <= 11.0, c1 > 1.5, c2 <= 2.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5628 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 3, c3 <= 11.0, c1 > 1.5, c2 > 2.5, c4 > 1.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5631 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 > 5.5, c2 <= 8.0, c3 <= 6.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5632 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 > 5.5, c2 <= 8.0, c3 <= 6.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5634 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 > 5.5, c2 > 8.0, c3 <= 9.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5637 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 <= 5.5, c1 <= 5.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5638 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 2, c5 <= 5.5, c1 <= 5.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5641 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 <= 7.5, c2 <= 5.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5642 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 <= 7.5, c2 <= 5.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 <= 7.5, c2 > 5.0, c3 <= 5.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5647 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 <= 7.5, c2 > 5.0, c3 <= 5.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5649 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 > 7.5, c2 <= 9.0, c3 > 5.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5651 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 > 7.5, c2 <= 9.0, c3 > 5.0, c4 > 6.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5653 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 3, s3 == 1, c1 > 7.5, c2 > 9.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5654 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 4, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5658 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 4, c3 > 2.5, c2 > 1.0, c5 > 1.5, c1 <= 1.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5659 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 4, c3 > 2.5, c2 > 1.0, c5 > 1.5, c1 <= 1.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5660 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 4, c3 > 2.5, c2 <= 1.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5661 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 4, c3 > 2.5, c2 <= 1.0, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5662 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 3, c1 > 2.0, c3 > 13, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5666 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 3, c1 > 2.0, c3 <= 13, c2 <= 12.0, c4 > 12.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5667 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 3, c1 > 2.0, c3 <= 13, c2 <= 12.0, c4 > 12.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5669 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 3, c1 <= 2.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5671 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 2, c3 <= 12.0, c4 <= 6.0, c5 <= 7.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5672 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 2, c3 <= 12.0, c4 <= 6.0, c5 <= 7.5, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5676 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 2, c3 > 12.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5677 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 1, c2 <= 5.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5683 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 2, s3 == 1, c2 > 5.0, c5 <= 7.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5687 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 4, c3 > 2.0, c5 > 1.5, c4 <= 6.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5692 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 <= 7.5, c2 <= 6.5, c5 <= 2.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5693 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 <= 7.5, c2 <= 6.5, c5 <= 2.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5695 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 <= 7.5, c2 > 6.5, c4 <= 4.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 <= 7.5, c2 > 6.5, c4 <= 4.5, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5697 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 <= 7.5, c2 > 6.5, c4 > 4.5, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5700 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 > 7.5, c4 <= 7.5, c2 <= 5.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#5701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 > 7.5, c4 <= 7.5, c2 <= 5.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5703 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 > 1.0, c3 > 7.5, c4 > 7.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5704 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 3, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5706 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 <= 12.5, c1 > 2.0, c4 <= 4.5, c2 <= 9.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5707 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 <= 12.5, c1 > 2.0, c4 <= 4.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5708 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 <= 12.5, c1 > 2.0, c4 > 4.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5711 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 <= 12.5, c1 <= 2.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5712 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 <= 12.5, c1 <= 2.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5713 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 > 12.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5714 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 2, c5 > 12.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5715 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 1, c2 > 1.0, c5 <= 9.0, c1 <= 2.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5717 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 1, c2 > 1.0, c5 <= 9.0, c1 > 2.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5719 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 1, c2 > 1.0, c5 <= 9.0, c1 > 2.5, c3 > 4.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5720 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 1, c2 > 1.0, c5 > 9.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5722 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 1, c2 > 1.0, c5 > 9.0, c1 <= 12, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5723 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 2, s2 == 1, s3 == 1, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5726 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c1 > 2.0, c2 <= 11.0, c4 <= 2.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5727 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c1 > 2.0, c2 <= 11.0, c4 <= 2.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5728 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c1 > 2.0, c2 > 11.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5729 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c1 > 2.0, c2 > 11.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5732 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5733 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c2 <= 13, c4 > 1.0, c3 <= 9.5, c1 > 1.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5735 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c2 <= 13, c4 > 1.0, c3 <= 9.5, c1 <= 1.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5740 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c2 <= 13, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5741 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 <= 7.5, c3 > 2.0, c2 <= 3.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5745 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 <= 7.5, c3 <= 2.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5746 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 <= 7.5, c3 <= 2.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5747 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 > 7.5, c2 > 1.0, c3 <= 6.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5748 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 > 7.5, c2 > 1.0, c3 <= 6.5, c5 > 8.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 > 7.5, c2 > 1.0, c3 > 6.5, c4 > 2.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5752 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 > 7.5, c2 > 1.0, c3 > 6.5, c4 <= 2.0, c5 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5753 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c1 > 7.5, c2 > 1.0, c3 > 6.5, c4 <= 2.0, c5 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5756 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 1.0, c4 > 4.0, c1 > 7.0, c2 <= 2.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5757 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 1.0, c4 > 4.0, c1 > 7.0, c2 <= 2.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5758 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 1.0, c4 > 4.0, c1 > 7.0, c2 > 2.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5762 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 1.0, c4 > 4.0, c1 <= 7.0, c2 > 6.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5763 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 1.0, c4 > 4.0, c1 <= 7.0, c2 > 6.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5764 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 1.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5765 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 1.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5767 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c2 > 1.5, c3 > 2.0, c1 > 1.0, c4 > 1.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5769 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c2 > 1.5, c3 > 2.0, c1 > 1.0, c4 <= 1.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5770 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c2 > 1.5, c3 > 2.0, c1 > 1.0, c4 <= 1.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5772 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c2 > 1.5, c3 <= 2.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5773 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c2 > 1.5, c3 <= 2.0, c1 > 4.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5774 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c2 > 1.5, c3 <= 2.0, c1 > 4.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.0, c2 <= 8.5, c1 > 2.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5777 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.0, c2 <= 8.5, c1 > 2.0, c3 > 2.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5781 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.0, c2 > 8.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5782 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 > 11.0, c3 <= 8.0, c1 <= 9.0, c2 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5783 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 > 11.0, c3 <= 8.0, c1 <= 9.0, c2 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5784 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 > 11.0, c3 <= 8.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5785 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 > 11.0, c3 > 8.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5788 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c4 <= 1.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5789 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c4 > 1.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5793 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c4 > 1.5, c2 <= 13, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5794 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 <= 11.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5795 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 <= 11.0, c4 <= 13, c5 > 1.0, c3 <= 2.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5796 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 <= 11.0, c4 <= 13, c5 > 1.0, c3 <= 2.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 <= 11.0, c4 <= 13, c5 <= 1.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5801 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 > 11.0, c4 > 7.0, c2 <= 10.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5802 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 > 11.0, c4 > 7.0, c2 <= 10.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5803 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 > 11.0, c4 > 7.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c1 > 11.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5806 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 9.5, c1 > 3.0, c2 > 2.0, c3 <= 3.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5807 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 9.5, c1 > 3.0, c2 > 2.0, c3 <= 3.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5808 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 9.5, c1 > 3.0, c2 > 2.0, c3 > 3.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5810 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 9.5, c1 > 3.0, c2 <= 2.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5811 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 9.5, c1 > 3.0, c2 <= 2.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5813 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 > 9.5, c1 > 5.5, c2 <= 7.0, c3 <= 12.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5814 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 > 9.5, c1 > 5.5, c2 <= 7.0, c3 <= 12.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5815 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 > 9.5, c1 > 5.5, c2 <= 7.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5816 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 > 9.5, c1 <= 5.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5817 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 > 9.5, c1 <= 5.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c3 > 2.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5819 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c3 > 2.0, c1 > 3.0, c2 > 2.0, c4 <= 2.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5820 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c3 > 2.0, c1 > 3.0, c2 > 2.0, c4 <= 2.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c3 <= 2.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5826 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c4 <= 12.5, c5 <= 12.5, c1 > 1.0, c3 > 2.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5828 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c4 <= 12.5, c5 <= 12.5, c1 > 1.0, c3 <= 2.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5831 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c4 <= 12.5, c5 <= 12.5, c1 <= 1.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5832 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c4 <= 12.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5833 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5834 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c2 <= 3.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5836 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c2 > 3.0, c3 > 2.0, c4 > 2.0, c1 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5838 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c2 > 3.0, c3 > 2.0, c4 > 2.0, c1 <= 2.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5839 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c2 > 3.0, c3 > 2.0, c4 > 2.0, c1 <= 2.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c2 > 3.0, c3 > 2.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5842 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c2 > 3.0, c3 <= 2.0, c1 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5844 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 <= 5.0, c1 > 4.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 <= 5.0, c1 > 4.5, c2 <= 5.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5846 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 <= 5.0, c1 > 4.5, c2 <= 5.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5848 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 5.0, c3 > 1.0, c1 > 1.5, c2 <= 10.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5850 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 5.0, c3 > 1.0, c1 > 1.5, c2 > 10.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5851 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 5.0, c3 > 1.0, c1 > 1.5, c2 > 10.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5852 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 5.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 > 1.0, c5 <= 10.0, c1 <= 2.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5854 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 > 1.0, c5 <= 10.0, c1 <= 2.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5855 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 > 1.0, c5 <= 10.0, c1 > 2.5, c2 <= 1.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5856 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 > 1.0, c5 <= 10.0, c1 > 2.5, c2 <= 1.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5858 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 > 1.0, c5 <= 10.0, c1 > 2.5, c2 > 1.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5859 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 > 1.0, c5 > 10.0, c1 > 2.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5860 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 > 1.0, c5 > 10.0, c1 > 2.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5861 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 > 1.0, c5 > 10.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c4 <= 1.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5865 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c1 > 2.0, c2 > 3.5, c3 <= 2.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5866 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c1 > 2.0, c2 > 3.5, c3 <= 2.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5867 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c1 > 2.0, c2 > 3.5, c3 > 2.5, c5 <= 3.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5868 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c1 > 2.0, c2 > 3.5, c3 > 2.5, c5 <= 3.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5871 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c1 <= 2.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5872 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c1 <= 2.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 <= 3.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 <= 9.5, c5 > 8.5, c1 <= 8.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5876 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 <= 9.5, c5 > 8.5, c1 <= 8.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5877 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 <= 9.5, c5 > 8.5, c1 > 8.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5879 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 <= 9.5, c5 <= 8.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5881 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 <= 9.5, c5 <= 8.5, c4 > 3.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5883 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 > 9.5, c4 > 5.5, c1 > 8.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5885 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c3 > 3.0, c2 > 9.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5888 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c1 > 3.0, c2 > 4.0, c4 <= 1.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5889 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c1 > 3.0, c2 > 4.0, c4 <= 1.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5891 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c1 > 3.0, c2 > 4.0, c4 > 1.5, c3 <= 10.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5892 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c1 > 3.0, c2 > 4.0, c4 > 1.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5893 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 <= 4.0, c3 <= 7.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5895 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 <= 4.0, c3 > 7.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5896 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 <= 4.0, c3 > 7.5, c4 > 6.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5897 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 <= 4.0, c3 > 7.5, c4 > 6.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5898 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 > 4.0, c4 <= 2.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5899 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 > 4.0, c4 <= 2.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5900 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 > 4.0, c4 > 2.5, c3 <= 9.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5902 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 > 1.0, c2 > 4.0, c4 > 2.5, c3 > 9.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5904 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5905 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 > 13, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5906 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 > 13, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5907 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 <= 4.0, c3 <= 2.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5908 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 <= 4.0, c3 <= 2.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 <= 4.0, c3 > 2.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5911 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 4.0, c4 <= 4.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5915 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 4.0, c4 > 4.5, c3 <= 4.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5916 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c2 <= 13, c1 > 4.0, c4 > 4.5, c3 > 4.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5918 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 <= 9.0, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5919 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 <= 9.0, c3 <= 12, c1 <= 4.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5925 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c2 > 9.0, c4 <= 5.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5929 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 2.0, c2 <= 12.0, c3 <= 4.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5930 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 2.0, c2 <= 12.0, c3 <= 4.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#5931 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 2.0, c2 <= 12.0, c3 > 4.5, c4 <= 1.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5932 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 2.0, c2 <= 12.0, c3 > 4.5, c4 <= 1.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5935 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 2.0, c2 > 12.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5936 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 2.0, c2 > 12.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5937 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 <= 2.0, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5938 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 <= 2.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5939 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 6.5, c5 <= 4.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5940 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 6.5, c5 <= 4.0, c2 <= 11.5, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5941 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 6.5, c5 <= 4.0, c2 <= 11.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5942 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 6.5, c5 > 4.0, c2 <= 2.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5943 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 6.5, c5 > 4.0, c2 <= 2.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 6.5, c5 > 4.0, c2 > 2.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5945 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 6.5, c5 > 4.0, c2 > 2.5, c3 <= 6.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5948 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 6.5, c4 > 2.5, c3 <= 5.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5951 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 6.5, c4 > 2.5, c3 > 5.5, c2 <= 10.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5952 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 6.5, c4 > 2.5, c3 > 5.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5955 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 > 6.0, c1 <= 8.0, c5 <= 9.0, c3 > 5.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5957 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 > 6.0, c1 <= 8.0, c5 > 9.0, c3 <= 9.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5958 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 > 6.0, c1 <= 8.0, c5 > 9.0, c3 <= 9.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5959 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 > 6.0, c1 <= 8.0, c5 > 9.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5960 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c2 > 6.0, c1 > 8.0, c3 > 4.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5965 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 <= 8.0, c2 <= 12.0, c1 > 5.0, c3 > 4.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5966 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 <= 8.0, c2 <= 12.0, c1 > 5.0, c3 <= 4.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#5967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 <= 8.0, c2 <= 12.0, c1 > 5.0, c3 <= 4.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5969 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 > 8.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5970 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 > 8.0, c1 > 3.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 > 8.0, c1 > 3.5, c3 > 2.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5972 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c4 > 8.0, c1 > 3.5, c3 > 2.0, c2 <= 13, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5974 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c1 > 12, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5975 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c1 > 12, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5976 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c1 <= 12, c2 <= 11.0, c3 <= 2.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5977 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c1 <= 12, c2 <= 11.0, c3 <= 2.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c1 <= 12, c2 <= 11.0, c3 > 2.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5981 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c1 <= 12, c2 > 11.0, c3 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5982 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c1 <= 12, c2 > 11.0, c3 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#5983 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c5 <= 3.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#5985 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c5 > 3.0, c3 > 1.0, c1 > 2.0, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5989 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c5 > 3.0, c3 <= 1.0, c1 <= 11.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5990 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c5 > 3.0, c3 <= 1.0, c1 <= 11.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5991 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c5 > 3.0, c3 <= 1.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5992 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 > 8.5, c3 > 5.5, c4 <= 4.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5993 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 > 8.5, c3 > 5.5, c4 <= 4.0, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5995 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 > 8.5, c3 <= 5.5, c1 <= 12.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5996 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 > 8.5, c3 <= 5.5, c1 <= 12.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5997 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 > 8.5, c3 <= 5.5, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#5998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 <= 8.5, c1 > 1.0, c3 <= 2.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#5999 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 <= 8.5, c1 > 1.0, c3 <= 2.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6000 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 <= 8.5, c1 > 1.0, c3 > 2.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6001 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 <= 8.5, c1 > 1.0, c3 > 2.5, c5 <= 13, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6003 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c2 <= 8.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6005 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c2 <= 1.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6006 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 12.0, c1 <= 3.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6009 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 12.0, c1 > 3.5, c3 <= 12.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6010 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 <= 12.0, c1 > 3.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6011 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 > 12.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6012 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c2 > 1.5, c4 > 12.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6013 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 > 1.0, c3 <= 12.5, c4 <= 1.5, c1 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6014 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 > 1.0, c3 <= 12.5, c4 <= 1.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6017 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 > 1.0, c3 <= 12.5, c4 > 1.5, c5 <= 1.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6018 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 > 1.0, c3 <= 12.5, c4 > 1.5, c5 <= 1.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6019 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 > 1.0, c3 > 12.5, c1 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 > 1.0, c3 > 12.5, c1 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6021 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 <= 1.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 <= 1.0, c1 <= 7.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6023 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c2 <= 1.0, c1 <= 7.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6027 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c3 > 1.5, c2 > 1.0, c4 > 2.0, c1 <= 2.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6030 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c3 > 1.5, c2 > 1.0, c4 <= 2.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6032 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c1 > 1.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6037 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6038 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c4 > 2.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6040 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c4 > 2.0, c1 > 2.5, c2 > 2.5, c3 <= 3.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6041 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c4 > 2.0, c1 > 2.5, c2 > 2.5, c3 <= 3.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6044 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c4 <= 2.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6046 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 4, c1 <= 2.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6047 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 4, c1 <= 2.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6048 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#6049 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c2 <= 13, c3 <= 3.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6050 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c2 <= 13, c3 <= 3.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6051 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c2 <= 13, c3 > 3.0, c4 > 8.5, c5 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6052 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c2 <= 13, c3 > 3.0, c4 > 8.5, c5 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6054 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 4, c1 > 2.5, c2 <= 13, c3 > 3.0, c4 <= 8.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6057 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 > 2.0, c4 <= 8.0, c1 <= 5.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6059 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 > 2.0, c4 > 8.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6060 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 > 2.0, c4 > 8.0, c1 > 2.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6062 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 <= 2.0, c1 > 2.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6064 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 3, c5 > 1.0, c2 <= 2.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6067 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 <= 10.0, c2 > 2.0, c4 <= 12.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6068 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 <= 10.0, c2 > 2.0, c4 > 12.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6069 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 <= 10.0, c2 > 2.0, c4 > 12.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6070 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 <= 10.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6071 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 > 10.0, c2 <= 10.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6073 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 > 10.0, c2 <= 10.5, c4 > 5.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6075 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 > 1.0, c3 > 10.0, c2 > 10.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6076 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 2, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6078 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 1, c3 <= 12.0, c1 > 2.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6079 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 1, c3 <= 12.0, c1 > 2.5, c4 <= 11.5, c2 <= 3.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6080 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 1, c3 <= 12.0, c1 > 2.5, c4 <= 11.5, c2 <= 3.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6081 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 1, c3 <= 12.0, c1 > 2.5, c4 <= 11.5, c2 > 3.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6083 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 1, c3 > 12.0, c1 <= 10.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6084 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 1, c3 > 12.0, c1 <= 10.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6085 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 4, s3 == 1, c3 > 12.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6087 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 4, c5 <= 3.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6091 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 4, c5 > 3.0, c1 > 2.5, c2 > 3.5, c4 <= 11.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6093 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 <= 10.0, c1 <= 3.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6094 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 <= 10.0, c1 <= 3.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6095 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 3.0, c5 > 2.0, c2 <= 3.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6096 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 3.0, c5 > 2.0, c2 <= 3.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6100 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 > 10.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 3, c4 > 10.0, c1 <= 12, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6103 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 <= 6.5, c1 <= 10.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6104 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 <= 6.5, c1 <= 10.5, c2 <= 13, c3 > 1.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6106 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 <= 6.5, c1 <= 10.5, c2 <= 13, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6107 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 <= 6.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6109 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 > 6.5, c1 > 4.5, c3 <= 12.5, c2 <= 7.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6110 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 > 6.5, c1 > 4.5, c3 <= 12.5, c2 <= 7.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6113 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 2, c4 > 6.5, c1 > 4.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6114 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 <= 12.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6116 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 <= 12.5, c5 > 3.0, c1 > 2.0, c2 <= 10.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6117 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 <= 12.5, c5 > 3.0, c1 > 2.0, c2 > 10.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6118 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 <= 12.5, c5 > 3.0, c1 > 2.0, c2 > 10.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6119 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 <= 12.5, c5 > 3.0, c1 <= 2.0, c2 <= 4.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6120 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 <= 12.5, c5 > 3.0, c1 <= 2.0, c2 <= 4.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6121 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 <= 12.5, c5 > 3.0, c1 <= 2.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6122 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 > 12.5, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6123 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 3, s3 == 1, c3 > 12.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6124 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 4, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6126 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 4, c3 > 3.0, c4 <= 9.5, c2 <= 11.5, c1 <= 12.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6129 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 4, c3 > 3.0, c4 > 9.5, c1 <= 10.5, c2 > 8.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6130 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 4, c3 > 3.0, c4 > 9.5, c1 <= 10.5, c2 > 8.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 4, c3 > 3.0, c4 > 9.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6133 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 3, c1 <= 1.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6134 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 3, c1 <= 1.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6135 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 3, c1 > 1.5, c2 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6139 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 3, c1 > 1.5, c2 <= 11, c3 > 10.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6140 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 3, c1 > 1.5, c2 <= 11, c3 > 10.0, c4 > 6.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6141 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 3, c1 > 1.5, c2 <= 11, c3 > 10.0, c4 > 6.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6143 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 2, c4 > 3.5, c1 <= 6.0, c2 <= 3.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6144 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 2, c4 > 3.5, c1 <= 6.0, c2 <= 3.5, c3 <= 7.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6145 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 2, c4 > 3.5, c1 <= 6.0, c2 <= 3.5, c3 <= 7.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#6147 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 2, c4 > 3.5, c1 > 6.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6152 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 <= 5.0, c4 <= 6.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6153 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 <= 5.0, c4 > 6.0, c3 <= 4.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6154 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 <= 5.0, c4 > 6.0, c3 <= 4.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6157 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 > 5.0, c1 <= 12.5, c2 <= 4.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6158 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 > 5.0, c1 <= 12.5, c2 > 4.0, c3 <= 4.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6162 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 2, s3 == 1, c5 > 5.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6164 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 > 7.0, c4 > 2.0, c2 <= 8.0, c3 > 2.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6165 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 > 7.0, c4 > 2.0, c2 <= 8.0, c3 <= 2.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6166 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 > 7.0, c4 > 2.0, c2 <= 8.0, c3 <= 2.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6167 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 > 7.0, c4 > 2.0, c2 > 8.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6168 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 > 7.0, c4 > 2.0, c2 > 8.0, c1 > 3.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6170 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 > 7.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6171 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 <= 7.0, c1 > 1.0, c2 > 1.0, c3 > 2.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 <= 7.0, c1 > 1.0, c2 > 1.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 <= 7.0, c1 > 1.0, c2 <= 1.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6175 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 <= 7.0, c1 > 1.0, c2 <= 1.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 4, c5 <= 7.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6177 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 <= 4.5, c1 <= 8.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6179 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 <= 4.5, c1 > 8.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6180 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 <= 4.5, c1 > 8.0, c2 <= 8.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6181 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 <= 4.5, c1 > 8.0, c2 <= 8.5, c3 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6185 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 > 4.5, c4 <= 12.5, c1 > 5.0, c2 > 9.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6186 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 > 4.5, c4 <= 12.5, c1 > 5.0, c2 > 9.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6187 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 3, c5 > 4.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6188 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 2, c1 > 2.0, c4 <= 3.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6190 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 2, c1 > 2.0, c4 > 3.5, c5 <= 10.0, c2 <= 1.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6191 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 2, c1 > 2.0, c4 > 3.5, c5 <= 10.0, c2 <= 1.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6193 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 2, c1 > 2.0, c4 > 3.5, c5 <= 10.0, c2 > 1.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6195 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 2, c1 > 2.0, c4 > 3.5, c5 > 10.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6197 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 1, c3 <= 12.0, c1 > 13, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6198 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 1, c3 <= 12.0, c1 > 13, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6199 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 1, c3 <= 12.0, c1 <= 13, c2 <= 3.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6200 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 1, c3 <= 12.0, c1 <= 13, c2 <= 3.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6203 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 1, c3 <= 12.0, c1 <= 13, c2 > 3.5, c4 > 3.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6204 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 3, s2 == 1, s3 == 1, c3 > 12.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6207 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 4, c1 <= 12.0, c5 > 3.0, c4 <= 7.5, c2 <= 4.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6208 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 4, c1 <= 12.0, c5 > 3.0, c4 <= 7.5, c2 <= 4.0, c3 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6209 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 4, c1 <= 12.0, c5 > 3.0, c4 <= 7.5, c2 > 4.0, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6212 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 4, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6214 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 <= 2.5, c1 <= 5.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6215 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 <= 2.5, c1 <= 5.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6216 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 > 2.5, c1 > 9.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 > 2.5, c1 > 9.0, c5 > 3.0, c3 <= 9.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6218 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 > 2.5, c1 > 9.0, c5 > 3.0, c3 <= 9.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6220 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 > 2.5, c1 <= 9.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6221 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 3, c2 > 2.5, c1 <= 9.0, c3 > 3.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6225 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 <= 4.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6226 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 > 4.0, c1 <= 4.0, c2 <= 10.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6227 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 > 4.0, c1 <= 4.0, c2 <= 10.5, c3 <= 7.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6231 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 > 4.0, c1 > 4.0, c2 > 2.5, c3 <= 6.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6232 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 > 4.0, c1 > 4.0, c2 > 2.5, c3 <= 6.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6233 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 2, c5 > 4.0, c1 > 4.0, c2 > 2.5, c3 > 6.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6235 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 <= 11.0, c3 <= 10.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6238 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 <= 11.0, c3 <= 10.5, c5 > 1.5, c4 > 4.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6239 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 <= 11.0, c3 > 10.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6241 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 > 11.0, c3 > 3.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6242 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 > 11.0, c3 > 3.5, c2 > 4.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6244 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 4, s3 == 1, c1 > 11.0, c3 > 3.5, c2 > 4.0, c4 > 5.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 <= 9.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6249 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 <= 9.0, c4 > 3.0, c3 <= 10.5, c5 <= 4.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6250 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 <= 9.0, c4 > 3.0, c3 > 10.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 > 9.0, c2 <= 12.0, c4 <= 5.5, c3 <= 10.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6253 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 > 9.0, c2 <= 12.0, c4 <= 5.5, c3 <= 10.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6254 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 > 9.0, c2 <= 12.0, c4 <= 5.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6255 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 > 9.0, c2 <= 12.0, c4 > 5.5, c3 <= 9.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6256 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 > 9.0, c2 <= 12.0, c4 > 5.5, c3 <= 9.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6258 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 > 9.0, c2 > 12.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6259 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 4, c1 > 9.0, c2 > 12.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6261 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 <= 7.5, c2 <= 13, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6262 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 <= 7.5, c2 <= 13, c3 > 4.5, c1 <= 12.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6264 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 <= 7.5, c2 <= 13, c3 > 4.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6265 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 > 7.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 > 7.5, c2 > 3.5, c3 <= 10.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6268 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 > 7.5, c2 > 3.5, c3 > 10.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6269 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 > 7.5, c2 > 3.5, c3 > 10.5, c1 <= 8.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 3, c5 > 7.5, c2 > 3.5, c3 > 10.5, c1 <= 8.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6271 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 2, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6275 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 2, c1 <= 13, c3 > 2.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6276 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 2, c1 <= 13, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6277 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 <= 9.0, c1 > 1.0, c2 <= 6.5, c5 > 4.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6280 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 <= 9.0, c1 > 1.0, c2 > 6.5, c5 <= 5.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6282 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 <= 9.0, c1 > 1.0, c2 > 6.5, c5 > 5.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6286 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 > 9.0, c1 > 6.5, c2 <= 3.0, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6287 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 > 9.0, c1 > 6.5, c2 <= 3.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6289 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 > 9.0, c1 > 6.5, c2 > 3.0, c5 > 8.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 > 9.0, c1 > 6.5, c2 > 3.0, c5 <= 8.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6291 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 3, s3 == 1, c3 > 9.0, c1 > 6.5, c2 > 3.0, c5 <= 8.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6292 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 <= 3.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6293 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 <= 3.5, c5 > 3.5, c1 <= 6.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6294 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 <= 3.5, c5 > 3.5, c1 <= 6.0, c2 > 4.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6295 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 <= 3.5, c5 > 3.5, c1 <= 6.0, c2 > 4.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6296 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 <= 3.5, c5 > 3.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6297 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 > 3.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 > 3.5, c2 <= 13, c1 <= 4.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6300 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 4, c3 > 3.5, c2 <= 13, c1 > 4.5, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 3, c2 > 2.0, c3 > 2.0, c1 > 2.0, c5 > 5.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6307 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 3, c2 > 2.0, c3 > 2.0, c1 <= 2.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6308 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 3, c2 > 2.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6309 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 3, c2 <= 2.0, c1 <= 11.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6310 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 3, c2 <= 2.0, c1 <= 11.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6311 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 3, c2 <= 2.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6314 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 11.0, c2 > 11.5, c3 > 8.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6315 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 11.0, c2 > 11.5, c3 > 8.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6316 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 11.0, c2 > 11.5, c3 <= 8.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 11.0, c2 > 11.5, c3 <= 8.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 11.0, c2 <= 11.5, c3 <= 9.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6320 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 11.0, c2 <= 11.5, c3 > 9.5, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6321 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 11.0, c2 <= 11.5, c3 > 9.5, c4 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6323 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 <= 1.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6324 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 2, s3 == 1, c5 <= 1.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6325 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 <= 4.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6326 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 <= 4.0, c2 > 3.0, c1 <= 9.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6327 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 <= 4.0, c2 > 3.0, c1 <= 9.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 <= 4.0, c2 > 3.0, c1 > 9.0, c3 <= 10.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6329 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 <= 4.0, c2 > 3.0, c1 > 9.0, c3 <= 10.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6330 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 <= 4.0, c2 > 3.0, c1 > 9.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6331 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 > 4.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6336 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 4, c5 > 4.0, c1 <= 13, c3 > 12.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6338 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 > 7.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6339 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 > 7.0, c1 <= 11.5, c3 <= 4.0, c5 <= 4.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6340 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 > 7.0, c1 <= 11.5, c3 <= 4.0, c5 <= 4.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6342 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 > 7.0, c1 <= 11.5, c3 > 4.0, c5 <= 7.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6343 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 > 7.0, c1 <= 11.5, c3 > 4.0, c5 <= 7.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6345 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 > 7.0, c1 <= 11.5, c3 > 4.0, c5 > 7.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6347 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 <= 7.0, c3 > 9.5, c1 > 2.0, c4 > 4.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6349 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 <= 7.0, c3 > 9.5, c1 > 2.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6350 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 3, c2 <= 7.0, c3 > 9.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6351 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 <= 10.0, c4 <= 12.5, c1 <= 10.5, c2 <= 3.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6352 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 <= 10.0, c4 <= 12.5, c1 <= 10.5, c2 <= 3.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6353 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 <= 10.0, c4 <= 12.5, c1 <= 10.5, c2 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6356 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 <= 10.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6357 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 > 10.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6361 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 2, c3 > 10.0, c2 > 3.5, c1 > 6.5, c4 <= 8.5, c5 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6362 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6363 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 <= 8.0, c5 > 13, c2 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6364 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 <= 8.0, c5 > 13, c2 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6365 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 <= 8.0, c5 <= 13, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6368 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 > 8.0, c2 <= 2.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6369 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 2, s2 == 1, s3 == 1, c1 <= 13, c4 > 8.0, c2 <= 2.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6373 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c2 > 2.5, c3 > 2.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6376 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c2 > 2.5, c3 > 2.0, c5 > 1.5, c4 > 1.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6377 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c2 > 2.5, c3 > 2.0, c5 > 1.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6379 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 <= 4.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6380 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 <= 4.5, c1 > 3.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6381 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 <= 4.5, c1 > 3.5, c3 > 5.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6385 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 > 4.5, c1 <= 12.5, c5 > 12.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6386 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 > 4.5, c1 <= 12.5, c5 > 12.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6387 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 > 4.5, c1 > 12.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6388 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c4 > 1.0, c2 > 4.5, c1 > 12.5, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6391 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 1.0, c3 <= 11.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6395 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6396 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6397 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c1 > 1.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6398 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c1 > 1.5, c3 > 2.5, c4 > 13, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6399 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c1 > 1.5, c3 > 2.5, c4 > 13, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6402 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c1 > 1.5, c3 > 2.5, c4 <= 13, c2 <= 1.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6404 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 <= 10.0, c2 > 2.0, c5 <= 12.0, c1 <= 3.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6408 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 <= 10.0, c2 > 2.0, c5 > 12.0, c1 <= 10.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6409 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 <= 10.0, c2 > 2.0, c5 > 12.0, c1 <= 10.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6410 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 <= 10.0, c2 > 2.0, c5 > 12.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6411 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 <= 10.0, c2 <= 2.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6413 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 > 10.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6414 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 > 10.0, c1 > 2.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6415 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 > 10.0, c1 > 2.5, c5 > 7.5, c2 <= 5.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6416 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c3 > 10.0, c1 > 2.5, c5 > 7.5, c2 <= 5.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 <= 6.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6419 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 <= 6.0, c1 > 1.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6422 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 <= 6.0, c1 > 1.5, c2 <= 11.5, c4 > 1.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6423 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 <= 12.5, c4 <= 6.5, c2 > 1.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6424 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 <= 12.5, c4 <= 6.5, c2 > 1.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6425 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 <= 12.5, c4 <= 6.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6426 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 <= 12.5, c4 > 6.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6429 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6431 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 <= 9.0, c4 > 1.0, c5 > 3.0, c1 <= 6.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 <= 9.0, c4 > 1.0, c5 > 3.0, c1 <= 6.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6433 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 <= 9.0, c4 > 1.0, c5 > 3.0, c1 > 6.5, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6435 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 <= 9.0, c4 <= 1.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6436 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 <= 9.0, c4 <= 1.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6437 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 > 9.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6438 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 > 9.0, c1 > 4.5, c2 > 7.0, c4 <= 12.5, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6440 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 > 9.0, c1 > 4.5, c2 > 7.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6442 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c3 > 9.0, c1 > 4.5, c2 <= 7.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6443 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 > 13, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6444 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 > 13, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 <= 13, c3 <= 8.0, c2 > 1.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6449 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 <= 13, c3 > 8.0, c2 <= 9.0, c1 <= 12.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6451 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 <= 13, c3 > 8.0, c2 <= 9.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6452 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c5 <= 13, c3 > 8.0, c2 > 9.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6455 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 <= 7.5, c2 <= 3.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6460 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 > 1.0, c5 > 7.5, c2 > 5.5, c4 <= 4.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 <= 1.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6465 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c1 <= 1.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6468 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 <= 10.0, c1 <= 12.5, c3 > 1.0, c5 > 12.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 <= 10.0, c1 <= 12.5, c3 > 1.0, c5 > 12.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6470 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 <= 10.0, c1 <= 12.5, c3 <= 1.0, c5 <= 3.5, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6471 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 <= 10.0, c1 <= 12.5, c3 <= 1.0, c5 <= 3.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6473 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 <= 10.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6474 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 > 10.0, c5 <= 7.5, c1 <= 9.5, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6475 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 > 10.0, c5 <= 7.5, c1 <= 9.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6476 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 > 10.0, c5 <= 7.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6478 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 > 10.0, c5 > 7.5, c1 > 6.5, c2 <= 8.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6479 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 > 10.0, c5 > 7.5, c1 > 6.5, c2 <= 8.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6480 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 > 10.0, c5 > 7.5, c1 > 6.5, c2 > 8.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c4 > 10.0, c5 > 7.5, c1 > 6.5, c2 > 8.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6482 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 9.0, c3 > 11.5, c2 > 4.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6483 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 9.0, c3 > 11.5, c2 > 4.5, c4 <= 7.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6484 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 9.0, c3 > 11.5, c2 > 4.5, c4 <= 7.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6485 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 9.0, c3 > 11.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6489 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 9.0, c3 <= 11.5, c2 > 6.0, c4 > 5.5, c5 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6490 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 9.0, c3 <= 5.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6491 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 9.0, c3 <= 5.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6492 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 9.0, c3 > 5.0, c4 <= 5.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6493 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 9.0, c3 > 5.0, c4 <= 5.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6494 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 9.0, c3 > 5.0, c4 > 5.5, c2 > 11.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6495 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 9.0, c3 > 5.0, c4 > 5.5, c2 > 11.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6497 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 9.0, c3 > 5.0, c4 > 5.5, c2 <= 11.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6498 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 <= 3.5, c1 > 2.0, c2 > 8.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6502 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 > 3.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6506 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 > 3.5, c2 > 1.5, c3 > 1.0, c1 <= 2.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c5 > 3.5, c2 > 1.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6508 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c3 <= 12.5, c4 > 1.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6512 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c3 <= 12.5, c4 <= 1.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6513 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c3 <= 12.5, c4 <= 1.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6515 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c4 <= 12.5, c1 <= 1.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6516 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c4 <= 12.5, c1 <= 1.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6517 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c4 <= 12.5, c1 > 1.5, c2 > 2.0, c3 > 11.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6518 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c4 <= 12.5, c1 > 1.5, c2 > 2.0, c3 > 11.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6522 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6523 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c2 > 1.0, c1 > 2.0, c3 <= 1.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6524 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c2 > 1.0, c1 > 2.0, c3 <= 1.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6526 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c2 > 1.0, c1 > 2.0, c3 > 1.5, c4 > 1.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6529 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6533 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 > 5.0, c1 > 4.0, c2 <= 10.0, c3 > 3.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6535 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 > 5.0, c1 > 4.0, c2 <= 10.0, c3 <= 3.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6536 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 > 5.0, c1 > 4.0, c2 <= 10.0, c3 <= 3.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6537 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 > 5.0, c1 > 4.0, c2 > 10.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6538 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 > 5.0, c1 > 4.0, c2 > 10.0, c3 <= 7.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6539 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c4 > 5.0, c1 > 4.0, c2 > 10.0, c3 <= 7.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6540 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 <= 5.0, c3 <= 6.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6543 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 > 5.0, c2 <= 10.5, c3 <= 6.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6544 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 > 5.0, c2 <= 10.5, c3 <= 6.0, c1 <= 4.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6545 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 > 5.0, c2 <= 10.5, c3 <= 6.0, c1 <= 4.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6548 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 > 5.0, c2 > 10.5, c1 <= 10.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 > 5.0, c2 > 10.5, c1 <= 10.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6550 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 4, c5 > 5.0, c2 > 10.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6551 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 <= 1.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6552 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 <= 1.5, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6554 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 <= 6.0, c4 > 3.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6559 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 > 6.0, c3 <= 11.0, c4 <= 2.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 > 6.0, c3 <= 11.0, c4 <= 2.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 > 6.0, c3 > 11.0, c4 <= 9.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6563 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 3, c1 > 1.5, c2 > 6.0, c3 > 11.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6565 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 2, c4 > 2.0, c3 > 2.0, c5 <= 2.5, c1 > 1.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6566 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 2, c4 > 2.0, c3 > 2.0, c5 <= 2.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 2, c4 > 2.0, c3 <= 2.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6572 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 <= 9.5, c4 <= 6.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6573 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 <= 9.5, c4 <= 6.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6575 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 <= 9.5, c4 > 6.5, c1 <= 12.0, c2 <= 12.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6576 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 <= 9.5, c4 > 6.5, c1 <= 12.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6577 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 <= 9.5, c4 > 6.5, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6578 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 > 9.5, c1 <= 10.5, c2 <= 9.5, c3 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6579 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 > 9.5, c1 <= 10.5, c2 <= 9.5, c3 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6580 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 > 9.5, c1 <= 10.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6581 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 4, s2 == 1, c5 > 9.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#6582 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 <= 2.5, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6583 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 <= 2.5, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6584 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 > 2.5, c4 <= 1.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6585 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 > 2.5, c4 <= 1.5, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6586 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 > 2.5, c4 > 1.5, c3 <= 11.0, c5 > 1.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6588 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 > 2.5, c4 > 1.5, c3 <= 11.0, c5 <= 1.0, c2 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6590 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 > 2.5, c4 > 1.5, c3 > 11.0, c2 <= 11.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6591 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 > 2.5, c4 > 1.5, c3 > 11.0, c2 <= 11.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6592 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 4, c1 > 2.5, c4 > 1.5, c3 > 11.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6593 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 3, c5 > 1.0, c1 > 2.0, c2 > 1.0, c3 <= 1.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6594 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 3, c5 > 1.0, c1 > 2.0, c2 > 1.0, c3 <= 1.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6595 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 3, c5 > 1.0, c1 > 2.0, c2 > 1.0, c3 > 1.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 3, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6601 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 <= 5.5, c3 > 5.5, c5 > 3.0, c2 > 1.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6604 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 <= 5.5, c3 <= 5.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6605 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 <= 5.5, c3 <= 5.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6609 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 > 5.5, c2 > 2.5, c4 > 2.5, c5 <= 7.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6610 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 2, c1 > 5.5, c2 > 2.5, c4 > 2.5, c5 <= 7.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6612 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 <= 4.0, c3 <= 8.5, c1 <= 10.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6613 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 <= 4.0, c3 <= 8.5, c1 <= 10.5, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6614 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 <= 4.0, c3 <= 8.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6615 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 > 11.5, c1 <= 8.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6616 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 > 11.5, c1 <= 8.0, c3 <= 2.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6617 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 > 11.5, c1 <= 8.0, c3 <= 2.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6618 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 > 11.5, c1 > 8.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 > 11.5, c1 > 8.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6622 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 <= 11.5, c1 > 2.5, c4 <= 7.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6623 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 3, s2 == 1, c5 > 4.0, c2 <= 11.5, c1 > 2.5, c4 > 7.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6628 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 <= 12.0, c4 > 1.5, c3 > 7.0, c1 <= 13, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6629 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 <= 12.0, c4 > 1.5, c3 <= 7.0, c1 <= 3.5, c5 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6630 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 <= 12.0, c4 > 1.5, c3 <= 7.0, c1 <= 3.5, c5 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 > 12.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 4, c2 > 12.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6637 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 3, c3 <= 12.0, c1 > 3.0, c2 > 2.0, c5 > 4.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6639 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 3, c3 <= 12.0, c1 > 3.0, c2 <= 2.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6640 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 3, c3 <= 12.0, c1 > 3.0, c2 <= 2.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6643 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 2, c1 > 4.0, c3 <= 8.0, c2 <= 6.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6646 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 2, c1 > 4.0, c3 > 8.0, c4 <= 1.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6647 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 2, c1 > 4.0, c3 > 8.0, c4 <= 1.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6649 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 > 1.0, c3 <= 7.5, c5 <= 4.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6650 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 > 1.0, c3 <= 7.5, c5 <= 4.0, c2 <= 5.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6651 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 > 1.0, c3 <= 7.5, c5 <= 4.0, c2 <= 5.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6652 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 > 1.0, c3 <= 7.5, c5 > 4.0, c2 <= 10.5, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6655 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 > 1.0, c3 > 7.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6657 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 <= 1.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6658 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 2, s2 == 1, c1 <= 1.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6662 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 <= 9.0, c3 <= 9.5, c2 <= 1.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6663 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 <= 9.0, c3 <= 9.5, c2 <= 1.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6665 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 <= 9.0, c3 > 9.5, c5 <= 1.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6666 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 <= 9.0, c3 > 9.5, c5 <= 1.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6667 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 > 9.0, c2 > 2.0, c3 <= 3.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6668 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 > 9.0, c2 > 2.0, c3 <= 3.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6671 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 > 9.0, c2 > 2.0, c3 > 3.0, c4 <= 5.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6672 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 4, c1 > 9.0, c2 > 2.0, c3 > 3.0, c4 <= 5.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6674 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 3, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6675 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 3, c3 > 1.5, c1 > 1.0, c2 <= 2.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6676 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 3, c3 > 1.5, c1 > 1.0, c2 <= 2.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6677 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 3, c3 > 1.5, c1 > 1.0, c2 > 2.5, c4 <= 2.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6678 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 3, c3 > 1.5, c1 > 1.0, c2 > 2.5, c4 <= 2.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6681 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 3, c3 > 1.5, c1 <= 1.0, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6682 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 3, c3 > 1.5, c1 <= 1.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6683 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 <= 9.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6684 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 <= 9.5, c3 <= 13, c2 <= 9.0, c4 <= 10.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6686 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 <= 9.5, c3 <= 13, c2 <= 9.0, c4 > 10.5, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6688 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 <= 9.5, c3 <= 13, c2 > 9.0, c4 <= 5.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6689 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 <= 9.5, c3 <= 13, c2 > 9.0, c4 <= 5.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6690 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 <= 9.5, c3 <= 13, c2 > 9.0, c4 > 5.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6692 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 > 9.5, c2 > 4.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6693 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 > 9.5, c2 > 4.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6694 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 2, c1 > 9.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 1, c3 > 2.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6699 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 1, c3 > 2.5, c1 <= 13, c5 <= 12, c4 <= 11.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6701 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 4, s3 == 1, s2 == 1, c3 > 2.5, c1 <= 13, c5 <= 12, c4 > 11.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6703 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 <= 3.0, c5 <= 5.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6704 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 <= 3.0, c5 <= 5.0, c1 <= 12, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6705 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 <= 3.0, c5 <= 5.0, c1 <= 12, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6706 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 > 3.0, c3 > 1.0, c1 <= 2.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6707 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 > 3.0, c3 > 1.0, c1 <= 2.5, c2 <= 13, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6711 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 > 3.0, c3 > 1.0, c1 > 2.5, c2 <= 1.0, c5 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6712 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 4, c4 > 3.0, c3 > 1.0, c1 > 2.5, c2 <= 1.0, c5 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6718 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c3 > 4.0, c1 <= 11.0, c2 > 2.5, c4 <= 10.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6720 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 3, c3 > 4.0, c1 > 11.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6724 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c4 > 1.5, c1 > 2.5, c3 <= 10.0, c2 <= 1.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6728 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 2, c4 > 1.5, c1 > 2.5, c3 > 10.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6731 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 <= 3.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6732 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 <= 3.0, c1 <= 11.5, c5 <= 2.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6733 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 <= 3.0, c1 <= 11.5, c5 <= 2.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6735 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 <= 9.0, c3 <= 9.0, c1 <= 4.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6739 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 <= 9.0, c3 > 9.0, c1 > 9.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6740 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 <= 9.0, c3 > 9.0, c1 > 9.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6741 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 <= 9.0, c3 > 9.0, c1 <= 9.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6743 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 > 9.0, c1 > 2.0, c4 <= 6.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6744 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 > 9.0, c1 > 2.0, c4 <= 6.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6745 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 4, s3 == 1, c2 > 3.0, c5 > 9.0, c1 > 2.0, c4 > 6.5, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6750 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c2 > 1.5, c4 > 1.0, c5 <= 3.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6753 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c2 > 1.5, c4 > 1.0, c5 > 3.5, c1 <= 2.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6754 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c2 > 1.5, c4 > 1.0, c5 > 3.5, c1 <= 2.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6755 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 4, c2 > 1.5, c4 <= 1.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c2 > 1.0, c1 > 1.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6758 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c2 > 1.0, c1 > 1.0, c5 <= 13, c3 > 1.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6761 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c2 > 1.0, c1 > 1.0, c5 <= 13, c3 <= 1.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6762 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c2 > 1.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6763 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 3, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6764 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6765 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 <= 13, c2 <= 3.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6766 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 <= 13, c2 <= 3.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6767 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 2, c1 <= 13, c2 > 3.0, c3 > 2.0, c5 > 1.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6774 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c5 > 1.0, c1 <= 13, c3 <= 12.5, c2 > 12.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6775 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c5 > 1.0, c1 <= 13, c3 <= 12.5, c2 > 12.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c5 > 1.0, c1 <= 13, c3 > 12.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6777 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c5 > 1.0, c1 <= 13, c3 > 12.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 3, s3 == 1, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6779 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c1 <= 1.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6780 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c1 <= 1.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6784 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c1 > 1.5, c5 > 1.5, c3 > 3.0, c4 <= 3.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6785 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 4, c1 > 1.5, c5 > 1.5, c3 > 3.0, c4 <= 3.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6788 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 > 7.0, c3 > 8.0, c2 <= 12.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6789 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 > 7.0, c3 > 8.0, c2 <= 12.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 > 7.0, c3 > 8.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6791 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 > 7.0, c3 <= 8.0, c4 > 3.0, c2 <= 10.0, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6793 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 > 7.0, c3 <= 8.0, c4 > 3.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6794 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 > 7.0, c3 <= 8.0, c4 <= 3.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6795 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 > 7.0, c3 <= 8.0, c4 <= 3.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6796 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 <= 7.0, c2 <= 5.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6800 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 3, c1 <= 7.0, c2 > 5.0, c3 > 6.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6801 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 <= 4.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6803 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 4.5, c1 <= 1.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 2, c3 > 4.5, c1 <= 1.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6809 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6810 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c5 > 1.5, c3 <= 3.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6812 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c5 > 1.5, c3 > 3.0, c2 <= 4.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c5 > 1.5, c3 > 3.0, c2 <= 4.0, c1 > 4.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6817 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 2, s3 == 1, c5 > 1.5, c3 > 3.0, c2 > 4.0, c1 > 1.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 <= 12.0, c1 > 2.0, c3 <= 12.0, c4 > 13, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6819 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 <= 12.0, c1 > 2.0, c3 <= 12.0, c4 > 13, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6822 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 <= 12.0, c1 > 2.0, c3 > 12.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6823 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 <= 12.0, c1 > 2.0, c3 > 12.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 > 12.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6826 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 4, c2 > 12.0, c3 > 5.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6828 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6829 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 <= 7.5, c4 <= 2.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6830 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 <= 7.5, c4 <= 2.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 > 7.5, c4 <= 4.0, c2 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6837 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 > 7.5, c4 > 4.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6839 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 3, c3 > 1.5, c1 > 7.5, c4 > 4.0, c5 > 4.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6841 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c3 > 1.5, c4 <= 2.5, c2 <= 3.5, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6842 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c3 > 1.5, c4 <= 2.5, c2 <= 3.5, c1 > 10.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6843 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c3 > 1.5, c4 <= 2.5, c2 <= 3.5, c1 > 10.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#6845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 2, c3 > 1.5, c4 > 2.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6850 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 > 7.0, c3 <= 6.5, c1 > 7.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6851 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 > 7.0, c3 <= 6.5, c1 <= 7.0, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6852 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 > 7.0, c3 <= 6.5, c1 <= 7.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 > 7.0, c3 > 6.5, c1 <= 10.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6854 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 > 7.0, c3 > 6.5, c1 <= 10.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6855 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 > 7.0, c3 > 6.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6856 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 <= 7.0, c3 <= 9.5, c1 > 2.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6859 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 <= 7.0, c3 <= 9.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6860 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 <= 7.0, c3 > 9.5, c1 <= 9.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6861 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 <= 7.0, c3 > 9.5, c1 <= 9.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 3, s2 == 1, s3 == 1, c2 <= 7.0, c3 > 9.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6865 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 > 2.5, c2 <= 9.5, c1 <= 5.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6866 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 > 2.5, c2 <= 9.5, c1 > 5.0, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6870 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 > 2.5, c2 > 9.5, c4 > 9.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6871 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 4, c3 > 2.5, c2 > 9.5, c4 > 9.0, c1 > 4.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c4 <= 3.5, c1 <= 8.0, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6878 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c4 > 3.5, c1 > 1.5, c2 <= 3.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6879 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 3, c4 > 3.5, c1 > 1.5, c2 > 3.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 3.5, c4 > 3.0, c5 <= 7.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6883 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 3.5, c4 > 3.0, c5 <= 7.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6885 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 3.5, c4 <= 3.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6886 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 <= 3.5, c4 <= 3.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6887 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 3.5, c3 <= 2.5, c1 <= 12.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6888 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 3.5, c3 <= 2.5, c1 <= 12.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6889 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 3.5, c3 <= 2.5, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6890 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 3.5, c3 > 2.5, c5 > 13, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6894 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 2, c2 > 3.5, c3 > 2.5, c5 <= 13, c1 > 9.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6897 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 <= 4.0, c1 <= 5.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6899 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 > 4.0, c5 <= 3.0, c1 <= 10.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6900 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 > 4.0, c5 <= 3.0, c1 <= 10.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6901 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 > 4.0, c5 <= 3.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6902 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 > 4.0, c5 > 3.0, c2 <= 4.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6903 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 > 4.0, c5 > 3.0, c2 <= 4.5, c3 > 6.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6905 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 4, s3 == 1, c4 > 4.0, c5 > 3.0, c2 > 4.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6908 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 <= 12.0, c5 <= 10.0, c2 <= 4.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 <= 12.0, c5 <= 10.0, c2 <= 4.5, c1 <= 9.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6913 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 <= 12.0, c5 <= 10.0, c2 > 4.5, c4 <= 12, c1 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6914 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 <= 12.0, c5 > 10.0, c1 > 5.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 <= 12.0, c5 > 10.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6917 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 > 12.0, c1 > 1.0, c2 <= 10.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6918 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 > 12.0, c1 > 1.0, c2 <= 10.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6919 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 > 12.0, c1 > 1.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6920 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 4, c3 > 12.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6921 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 2.0, c3 <= 5.0, c2 <= 2.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6922 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 2.0, c3 <= 5.0, c2 <= 2.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6926 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 2.0, c3 > 5.0, c2 > 10.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6927 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 <= 10.0, c1 > 2.0, c3 > 5.0, c2 > 10.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6930 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 > 10.0, c2 > 2.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6931 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 3, c4 > 10.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6932 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 <= 8.0, c4 <= 3.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6933 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 <= 8.0, c4 <= 3.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6935 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 <= 8.0, c4 > 3.5, c1 > 11.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 <= 8.0, c4 > 3.5, c1 <= 11.5, c2 <= 7.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6940 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 > 8.0, c4 > 4.0, c1 <= 10.5, c5 <= 6.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6941 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 > 8.0, c4 > 4.0, c1 <= 10.5, c5 <= 6.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6943 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 2, c3 > 8.0, c4 > 4.0, c1 <= 10.5, c5 > 6.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6946 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 <= 4.0, c5 <= 11.5, c1 > 7.5, c2 <= 11.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6947 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 <= 4.0, c5 <= 11.5, c1 > 7.5, c2 <= 11.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6948 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 <= 4.0, c5 <= 11.5, c1 > 7.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6949 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 <= 4.0, c5 <= 11.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#6950 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 > 4.0, c2 > 2.0, c3 <= 10.5, c1 <= 1.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6951 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 > 4.0, c2 > 2.0, c3 <= 10.5, c1 <= 1.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6952 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 3, s3 == 1, c4 > 4.0, c2 > 2.0, c3 <= 10.5, c1 > 1.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6960 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c2 > 5.0, c1 <= 4.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6961 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c2 > 5.0, c1 > 4.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6962 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c2 > 5.0, c1 > 4.5, c4 > 3.5, c3 > 2.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6964 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c2 > 5.0, c1 > 4.5, c4 > 3.5, c3 <= 2.5, c5 <= 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6965 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 4, c2 > 5.0, c1 > 4.5, c4 > 3.5, c3 <= 2.5, c5 > 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6969 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 2.0, c1 > 1.0, c4 > 11.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 2.0, c1 <= 1.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6972 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 3, c5 > 2.0, c1 <= 1.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6975 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c3 <= 11.5, c1 > 1.0, c4 <= 12.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#6977 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c3 <= 11.5, c1 > 1.0, c4 <= 12.0, c2 <= 13, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#6979 poker_hand = 8 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 2, c3 <= 11.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+end
+
+rule "#6980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 <= 6.0, c2 <= 1.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6981 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 <= 6.0, c2 <= 1.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6983 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 <= 6.0, c2 > 1.5, c5 <= 2.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6985 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 > 6.0, c1 <= 9.5, c2 <= 3.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6987 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 > 6.0, c1 <= 9.5, c2 > 3.5, c3 <= 10.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6989 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 > 6.0, c1 <= 9.5, c2 > 3.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6990 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 > 6.0, c1 > 9.5, c2 <= 8.5, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6991 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 > 6.0, c1 > 9.5, c2 <= 8.5, c3 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6992 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 2, s3 == 1, c4 > 6.0, c1 > 9.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#6998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c2 <= 11.5, c1 > 10.0, c3 <= 10.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#6999 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 4, c2 <= 11.5, c1 > 10.0, c3 <= 10.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7001 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c2 > 11.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7003 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c2 <= 11.5, c1 > 2.0, c3 <= 2.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7005 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c2 <= 11.5, c1 > 2.0, c3 > 2.5, c4 <= 3.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7006 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c2 <= 11.5, c1 > 2.0, c3 > 2.5, c4 <= 3.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7009 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 3, c2 <= 11.5, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7013 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c1 > 3.5, c2 > 3.5, c4 <= 8.0, c5 <= 3.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7015 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c1 > 3.5, c2 > 3.5, c4 > 8.0, c5 <= 3.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7016 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 2, c1 > 3.5, c2 > 3.5, c4 > 8.0, c5 <= 3.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7019 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c4 <= 5.0, c1 > 7.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c4 > 5.0, c2 > 2.0, c1 > 3.0, c3 <= 4.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7023 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 2, s2 == 1, s3 == 1, c4 > 5.0, c2 > 2.0, c1 > 3.0, c3 <= 4.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7029 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c1 <= 12.0, c2 > 1.5, c4 > 2.0, c3 > 1.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7030 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c1 <= 12.0, c2 > 1.5, c4 > 2.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7031 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 4, c1 <= 12.0, c2 > 1.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7033 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 9.0, c2 <= 8.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7037 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 9.0, c2 <= 8.0, c3 > 3.5, c1 > 10.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7038 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 9.0, c2 > 8.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7039 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 9.0, c2 > 8.0, c1 > 4.0, c3 <= 10.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7040 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 9.0, c2 > 8.0, c1 > 4.0, c3 <= 10.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7041 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 <= 9.0, c2 > 8.0, c1 > 4.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7043 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 9.0, c3 > 3.0, c1 > 4.5, c2 <= 9.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7044 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 3, c4 > 9.0, c3 > 3.0, c1 > 4.5, c2 <= 9.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7048 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c4 <= 11.0, c3 <= 12.0, c5 > 9.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7049 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c4 <= 11.0, c3 <= 12.0, c5 > 9.5, c1 <= 9.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7051 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c4 <= 11.0, c3 > 12.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7052 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c4 <= 11.0, c3 > 12.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7053 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 2, c4 > 11.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7055 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 <= 4.0, c2 <= 4.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7056 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 <= 4.0, c2 <= 4.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7058 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 > 4.0, c2 <= 8.0, c5 <= 9.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7061 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 > 4.0, c2 <= 8.0, c5 > 9.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7063 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 > 4.0, c2 > 8.0, c4 > 1.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7064 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 <= 10.5, c1 > 4.0, c2 > 8.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7065 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 10.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7066 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 10.5, c2 <= 11.5, c1 <= 11.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7068 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 4, s2 == 1, c3 > 10.5, c2 <= 11.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7071 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c5 > 1.5, c3 <= 12.5, c1 <= 11.0, c2 <= 4.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7073 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 4, c5 > 1.5, c3 <= 12.5, c1 <= 11.0, c2 > 4.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7076 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 <= 6.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7077 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 <= 6.0, c2 > 6.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7078 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 <= 6.0, c2 > 6.5, c1 <= 9.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7080 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 > 6.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7081 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 > 6.5, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7083 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 <= 6.5, c3 <= 6.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7084 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 3, c5 > 6.0, c1 <= 6.5, c3 <= 6.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7086 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c1 > 1.0, c2 > 1.0, c5 <= 10.5, c3 > 1.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7089 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c1 > 1.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7090 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c1 <= 1.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7091 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 2, c1 <= 1.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7094 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 <= 4.5, c1 > 8.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7095 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 <= 4.5, c1 > 8.0, c2 <= 11.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7096 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 <= 4.5, c1 > 8.0, c2 <= 11.5, c4 > 5.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7097 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 <= 4.5, c1 > 8.0, c2 <= 11.5, c4 > 5.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7098 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 > 4.5, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7100 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 3, s2 == 1, c3 > 4.5, c5 <= 11, c4 <= 12.5, c1 > 6.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7104 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.0, c2 > 2.0, c1 <= 4.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7105 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.0, c2 > 2.0, c1 > 4.0, c5 > 4.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7107 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.0, c2 > 2.0, c1 > 4.0, c5 <= 4.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7108 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.0, c2 > 2.0, c1 > 4.0, c5 <= 4.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7109 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.0, c2 <= 2.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7110 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.0, c2 <= 2.0, c1 <= 8.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7111 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.0, c2 <= 2.0, c1 <= 8.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7112 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 > 8.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7114 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 4, c4 > 8.0, c1 > 5.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7115 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c3 <= 2.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7117 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c3 > 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7121 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c3 > 2.5, c4 > 2.5, c1 > 12.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 3, c3 > 2.5, c4 > 2.5, c1 > 12.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7124 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 <= 3.0, c4 > 5.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7125 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 <= 3.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7127 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 > 3.0, c1 <= 3.0, c3 <= 3.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7128 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 > 3.0, c1 <= 3.0, c3 <= 3.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7129 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 > 3.0, c1 > 3.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7131 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 > 3.0, c1 > 3.0, c5 > 3.0, c3 <= 9.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7132 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 2, c2 > 3.0, c1 > 3.0, c5 > 3.0, c3 > 9.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7134 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 <= 5.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7135 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 <= 5.0, c3 > 5.5, c1 > 3.0, c2 <= 8.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7136 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 <= 5.0, c3 > 5.5, c1 > 3.0, c2 <= 8.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7137 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 <= 5.0, c3 > 5.5, c1 > 3.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7138 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 <= 5.0, c3 > 5.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7139 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 > 5.0, c1 > 2.0, c2 <= 9.0, c4 <= 6.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7140 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 > 5.0, c1 > 2.0, c2 <= 9.0, c4 <= 6.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7143 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 > 5.0, c1 > 2.0, c2 > 9.0, c3 <= 10.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7144 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 > 5.0, c1 > 2.0, c2 > 9.0, c3 > 10.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7145 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 > 5.0, c1 > 2.0, c2 > 9.0, c3 > 10.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7146 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 > 5.0, c1 <= 2.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7147 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 2, s2 == 1, c5 > 5.0, c1 <= 2.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7148 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 <= 4.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7149 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 <= 4.0, c1 > 3.5, c4 <= 10.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7150 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 <= 4.0, c1 > 3.5, c4 <= 10.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7152 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 <= 4.0, c1 > 3.5, c4 > 10.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7154 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 > 4.0, c4 <= 3.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7155 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 > 1.0, c3 > 4.0, c4 > 3.0, c1 <= 10.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7158 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 4, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7162 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 <= 11.0, c5 > 2.0, c1 > 2.5, c2 <= 13, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 <= 11.0, c5 <= 2.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7164 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 <= 11.0, c5 <= 2.0, c2 > 1.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7165 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 <= 11.0, c5 <= 2.0, c2 > 1.5, c1 > 4.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7167 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 > 11.0, c4 <= 4.5, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 3, c3 > 11.0, c4 <= 4.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7170 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 <= 12.0, c5 <= 10.5, c1 <= 1.5, c2 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7171 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 <= 12.0, c5 <= 10.5, c1 <= 1.5, c2 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 <= 12.0, c5 <= 10.5, c1 > 1.5, c2 <= 5.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 <= 12.0, c5 <= 10.5, c1 > 1.5, c2 > 5.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7176 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 <= 12.0, c5 > 10.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 <= 12.0, c5 > 10.5, c1 > 5.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7178 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 <= 12.0, c5 > 10.5, c1 > 5.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7180 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 2, c3 > 12.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7183 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 > 1.0, c3 <= 11.5, c2 <= 12.0, c4 <= 3.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 > 1.0, c3 <= 11.5, c2 <= 12.0, c4 <= 3.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7187 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 > 1.0, c3 <= 11.5, c2 > 12.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7188 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 > 1.0, c3 <= 11.5, c2 > 12.0, c5 > 3.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7190 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 2, s5 == 1, s3 == 1, s2 == 1, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7191 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 > 1.0, c4 <= 8.0, c3 <= 3.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7192 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 > 1.0, c4 <= 8.0, c3 <= 3.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7193 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 > 1.0, c4 <= 8.0, c3 > 3.5, c2 > 2.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7196 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 > 1.0, c4 > 8.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7199 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 > 1.0, c4 > 8.0, c5 <= 11.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7200 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 <= 1.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7201 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 4, c1 <= 1.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7202 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 <= 11.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7205 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 <= 11.0, c3 <= 13, c1 > 2.0, c4 <= 5.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7208 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 > 11.0, c3 <= 10.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7210 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 > 11.0, c3 <= 10.0, c1 <= 12, c4 <= 9.5, c5 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7211 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 3, c2 > 11.0, c3 <= 10.0, c1 <= 12, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7214 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 <= 13, c1 <= 2.5, c2 <= 9.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7215 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 <= 13, c1 <= 2.5, c2 <= 9.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7216 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 <= 13, c1 <= 2.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7219 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 <= 13, c1 > 2.5, c2 > 1.0, c4 > 9.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7221 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 <= 13, c1 > 2.5, c2 <= 1.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7222 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 2, c5 <= 13, c1 > 2.5, c2 <= 1.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7223 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 <= 3.5, c2 > 5.5, c1 <= 8.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7224 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 <= 3.5, c2 > 5.5, c1 <= 8.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7225 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 <= 3.5, c2 > 5.5, c1 > 8.0, c4 <= 7.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7226 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 <= 3.5, c2 > 5.5, c1 > 8.0, c4 <= 7.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7228 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 <= 3.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7229 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 > 3.5, c1 > 1.0, c2 <= 1.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7230 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 > 3.5, c1 > 1.0, c2 <= 1.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7231 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 4, s3 == 1, c3 > 3.5, c1 > 1.0, c2 > 1.5, c4 <= 5.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7242 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 <= 8.5, c3 <= 11.0, c2 > 5.0, c1 > 4.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7243 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 <= 8.5, c3 > 11.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7245 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 <= 8.5, c3 > 11.0, c2 > 3.5, c1 <= 5.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7246 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 4, c4 <= 8.5, c3 > 11.0, c2 > 3.5, c1 <= 5.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7248 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 3, c3 > 1.5, c1 > 2.0, c2 > 1.0, c4 > 11.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7249 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 3, c3 > 1.5, c1 > 2.0, c2 > 1.0, c4 > 11.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7251 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 3, c3 > 1.5, c1 > 2.0, c2 > 1.0, c4 <= 11.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7252 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 3, c3 > 1.5, c1 > 2.0, c2 <= 1.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7253 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 3, c3 > 1.5, c1 > 2.0, c2 <= 1.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7255 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 <= 11.0, c5 > 1.0, c4 <= 1.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 <= 11.0, c5 > 1.0, c4 > 1.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7260 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 <= 11.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7262 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 > 11.0, c2 <= 6.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7264 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 > 11.0, c2 > 6.5, c3 <= 5.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7265 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 2, c1 > 11.0, c2 > 6.5, c3 <= 5.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7266 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 <= 10.0, c5 <= 8.5, c1 > 8.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7268 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 <= 10.0, c5 <= 8.5, c1 <= 8.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 <= 10.0, c5 <= 8.5, c1 <= 8.5, c3 <= 7.5, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7271 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 <= 10.0, c5 > 8.5, c1 <= 6.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7272 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 <= 10.0, c5 > 8.5, c1 <= 6.0, c3 > 3.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7273 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 <= 10.0, c5 > 8.5, c1 <= 6.0, c3 > 3.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7275 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 > 10.0, c1 > 2.0, c3 <= 9.0, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 > 10.0, c1 > 2.0, c3 <= 9.0, c4 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7277 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 > 10.0, c1 > 2.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7278 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 3, s3 == 1, c2 > 10.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7279 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 4, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7281 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 4, c5 <= 13, c1 <= 3.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7282 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 4, c5 <= 13, c1 > 3.5, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7286 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 4, c5 <= 13, c1 > 3.5, c4 <= 12, c3 > 7.5, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7287 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 3, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7288 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 3, c2 > 1.5, c1 <= 12.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7290 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 3, c2 > 1.5, c1 <= 12.0, c4 <= 13, c5 <= 12.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7291 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 3, c2 > 1.5, c1 <= 12.0, c4 <= 13, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7292 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 3, c2 > 1.5, c1 > 12.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7293 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 3, c2 > 1.5, c1 > 12.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7294 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 <= 7.5, c4 <= 12.5, c5 > 7.0, c2 <= 7.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7295 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 <= 7.5, c4 <= 12.5, c5 > 7.0, c2 <= 7.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7296 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 <= 7.5, c4 <= 12.5, c5 > 7.0, c2 > 7.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7297 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 <= 7.5, c4 <= 12.5, c5 > 7.0, c2 > 7.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 <= 7.5, c4 <= 12.5, c5 <= 7.0, c3 <= 3.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7303 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 > 7.5, c5 > 2.5, c2 <= 3.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7304 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 > 7.5, c5 > 2.5, c2 <= 3.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7306 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 2, c1 > 7.5, c5 > 2.5, c2 > 3.5, c3 <= 7.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7308 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 > 1.0, c2 <= 1.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7309 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 > 1.0, c2 <= 1.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 > 1.0, c2 > 1.5, c3 > 2.5, c4 > 11.5, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7311 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 > 1.0, c2 > 1.5, c3 > 2.5, c4 > 11.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7314 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 > 1.0, c2 > 1.5, c3 <= 2.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7315 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 > 1.0, c2 > 1.5, c3 <= 2.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7316 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 <= 1.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 2, s3 == 1, c1 <= 1.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 <= 4.5, c3 <= 9.0, c1 > 5.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7319 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 <= 4.5, c3 <= 9.0, c1 > 5.5, c4 > 2.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7321 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 <= 4.5, c3 <= 9.0, c1 <= 5.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7322 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 <= 4.5, c3 <= 9.0, c1 <= 5.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7323 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 <= 4.5, c3 > 9.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7325 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 > 4.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7326 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 > 4.5, c2 > 1.5, c1 <= 4.5, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7327 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 > 4.5, c2 > 1.5, c1 <= 4.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 4, c5 > 4.5, c2 > 1.5, c1 > 4.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7331 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 3, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7332 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 3, c3 <= 13, c1 <= 3.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7334 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 3, c3 <= 13, c1 > 3.0, c4 > 13, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7339 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 <= 3.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7341 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 > 3.5, c5 <= 10.0, c3 <= 3.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7343 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 > 3.5, c5 <= 10.0, c3 > 3.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7344 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 > 3.5, c5 <= 10.0, c3 > 3.0, c1 > 3.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7346 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 > 3.5, c5 > 10.0, c1 <= 8.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7347 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 > 3.5, c5 > 10.0, c1 <= 8.5, c3 <= 13, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7348 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 2, c2 > 3.5, c5 > 10.0, c1 <= 8.5, c3 <= 13, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7351 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 1, c4 <= 3.0, c1 > 1.0, c2 <= 7.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7353 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 1, c4 <= 3.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7354 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 1, c4 > 3.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7355 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 1, c4 > 3.0, c3 > 1.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7356 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 4, s5 == 1, s3 == 1, c4 > 3.0, c3 > 1.5, c1 <= 11.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7361 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 4, c1 > 2.0, c3 > 3.0, c2 <= 3.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7362 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 4, c1 > 2.0, c3 > 3.0, c2 > 3.0, c5 > 13, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7363 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 4, c1 > 2.0, c3 > 3.0, c2 > 3.0, c5 > 13, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7367 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 3, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7368 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 3, c5 > 1.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7372 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 3, c5 > 1.5, c2 > 3.0, c1 <= 11.0, c3 > 10.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7375 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 2, c5 <= 1.5, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7379 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 2, c5 > 1.5, c1 > 2.0, c2 > 1.0, c3 <= 2.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7382 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 > 11.5, c1 <= 5.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7383 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 > 11.5, c1 <= 5.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7384 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 > 11.5, c1 > 5.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7390 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 <= 11.5, c2 > 9.5, c1 <= 9.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7393 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 <= 11.5, c2 > 9.5, c1 > 9.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7394 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 4, s3 == 1, c3 <= 11.5, c2 > 9.5, c1 > 9.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7398 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 > 5.5, c4 <= 12.5, c3 > 9.5, c1 <= 4.5, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7399 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 > 5.5, c4 <= 12.5, c3 > 9.5, c1 <= 4.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7400 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 > 5.5, c4 <= 12.5, c3 > 9.5, c1 > 4.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7402 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 4, c2 > 5.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7405 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 <= 4.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7406 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 <= 4.5, c1 > 2.5, c3 > 6.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7408 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 <= 4.5, c1 > 2.5, c3 <= 6.0, c2 <= 9.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7409 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 <= 4.5, c1 > 2.5, c3 <= 6.0, c2 <= 9.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7410 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 <= 4.5, c1 > 2.5, c3 <= 6.0, c2 > 9.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7411 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 <= 4.5, c1 > 2.5, c3 <= 6.0, c2 > 9.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7415 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 > 4.5, c1 > 2.5, c2 > 5.5, c5 > 3.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 > 4.5, c1 > 2.5, c2 <= 5.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7417 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 3, c4 > 4.5, c1 > 2.5, c2 <= 5.5, c3 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 2, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 2, c5 <= 11.5, c1 <= 10.5, c2 > 2.5, c3 > 2.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7423 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 2, c5 <= 11.5, c1 > 10.5, c2 <= 10.5, c3 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7424 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 2, c5 <= 11.5, c1 > 10.5, c2 <= 10.5, c3 <= 9, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7425 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 2, c5 <= 11.5, c1 > 10.5, c2 <= 10.5, c3 <= 9, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7426 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 2, c5 <= 11.5, c1 > 10.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 <= 11.0, c2 > 11.5, c4 <= 10.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7430 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 <= 11.0, c2 > 11.5, c4 > 10.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7431 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 <= 11.0, c2 > 11.5, c4 > 10.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7435 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 > 11.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7436 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 > 11.0, c2 > 2.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7437 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 > 11.0, c2 > 2.0, c3 <= 5.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7438 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 3, s3 == 1, c1 > 2.5, c5 > 11.0, c2 > 2.0, c3 <= 5.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7440 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 4, c1 <= 9.0, c5 > 4.0, c2 <= 3.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7441 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 4, c1 <= 9.0, c5 > 4.0, c2 <= 3.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 3, c1 > 1.0, c2 > 1.0, c3 <= 1.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7448 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 3, c1 > 1.0, c2 > 1.0, c3 <= 1.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7451 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 3, c1 > 1.0, c2 > 1.0, c3 > 1.5, c4 > 2.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7453 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 3, c1 <= 1.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7454 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 3, c1 <= 1.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7455 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 <= 6.0, c1 <= 2.5, c3 > 5.0, c4 <= 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7456 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 <= 6.0, c1 <= 2.5, c3 > 5.0, c4 > 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7457 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 <= 6.0, c1 <= 2.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7458 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 <= 6.0, c1 > 2.5, c3 <= 2.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7459 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 <= 6.0, c1 > 2.5, c3 <= 2.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7460 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 <= 6.0, c1 > 2.5, c3 > 2.0, c4 <= 6.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7461 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 2, c2 <= 6.0, c1 > 2.5, c3 > 2.0, c4 <= 6.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7467 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 1, c1 <= 13, c2 > 2.5, c5 > 8.5, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7468 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 1, c1 <= 13, c2 > 2.5, c5 > 8.5, c4 <= 11, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7470 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 1, c1 <= 13, c2 > 2.5, c5 <= 8.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7471 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 2, s3 == 1, c1 <= 13, c2 > 2.5, c5 <= 8.5, c3 > 1.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7474 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 4, c3 <= 11.5, c5 > 13, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7475 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 4, c3 <= 11.5, c5 > 13, c1 <= 7.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7476 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 4, c3 <= 11.5, c5 > 13, c1 <= 7.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7478 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 4, c3 <= 11.5, c5 <= 13, c1 > 2.5, c2 > 2.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7482 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 3, c1 <= 13, c2 > 1.0, c3 <= 1.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7483 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 3, c1 <= 13, c2 > 1.0, c3 <= 1.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7484 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 3, c1 <= 13, c2 > 1.0, c3 > 1.5, c4 <= 3.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7485 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 3, c1 <= 13, c2 > 1.0, c3 > 1.5, c4 <= 3.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7486 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 3, c1 <= 13, c2 > 1.0, c3 > 1.5, c4 > 3.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7488 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 3, c1 <= 13, c2 <= 1.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7489 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 3, c1 <= 13, c2 <= 1.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7493 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 2, c1 > 1.0, c2 > 1.5, c3 > 2.0, c4 <= 1.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7494 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 2, c1 > 1.0, c2 > 1.5, c3 > 2.0, c4 <= 1.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7495 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 2, c1 > 1.0, c2 > 1.5, c3 <= 2.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7496 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 2, c1 > 1.0, c2 > 1.5, c3 <= 2.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7497 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 2, c1 <= 1.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7498 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 2, c1 <= 1.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7500 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 1, c2 > 3.0, c4 <= 1.5, c1 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 1, c2 > 3.0, c4 <= 1.5, c1 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7502 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 1, c2 > 3.0, c4 > 1.5, c1 > 7.0, c3 > 6.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7503 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 1, c2 > 3.0, c4 > 1.5, c1 > 7.0, c3 > 6.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7504 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 1, c2 > 3.0, c4 > 1.5, c1 > 7.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7506 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 1, c2 > 3.0, c4 > 1.5, c1 <= 7.0, c3 > 9.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 3, s5 == 1, s3 == 1, c2 > 3.0, c4 > 1.5, c1 <= 7.0, c3 > 9.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7508 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 > 13, c2 <= 12.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7509 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 > 13, c2 <= 12.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7510 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 > 13, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7511 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 <= 8.0, c4 <= 5.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7514 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 <= 8.0, c4 > 5.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7515 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 <= 8.0, c4 > 5.0, c2 <= 13, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7517 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 > 8.0, c4 <= 5.0, c2 <= 11.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7518 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 > 8.0, c4 <= 5.0, c2 <= 11.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7519 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 > 8.0, c4 <= 5.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7520 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 > 8.0, c4 > 5.0, c5 <= 9.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7523 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 4, c1 <= 13, c3 > 8.0, c4 > 5.0, c5 > 9.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7525 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 > 7.0, c5 <= 6.0, c3 <= 8.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7526 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 > 7.0, c5 <= 6.0, c3 <= 8.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7529 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 > 7.0, c5 > 6.0, c3 > 11.0, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7530 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 > 7.0, c5 > 6.0, c3 > 11.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7531 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 <= 7.0, c5 > 2.0, c4 <= 4.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7532 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 <= 7.0, c5 > 2.0, c4 <= 4.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7533 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 <= 7.0, c5 > 2.0, c4 > 4.5, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7535 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 > 2.0, c1 <= 7.0, c5 <= 2.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7537 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 <= 2.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7538 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 3, c2 <= 2.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7539 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 2, c5 > 2.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7540 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 2, c5 > 2.0, c3 <= 13, c1 <= 3.0, c2 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7541 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 2, c5 > 2.0, c3 <= 13, c1 <= 3.0, c2 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7543 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 2, c5 > 2.0, c3 <= 13, c1 > 3.0, c2 > 4.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7545 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 2, c5 <= 2.0, c1 <= 10.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7546 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 2, c5 <= 2.0, c1 <= 10.5, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7547 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 2, c5 <= 2.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 <= 9.5, c2 > 3.5, c5 <= 5.0, c4 > 1.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7550 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 <= 9.5, c2 > 3.5, c5 <= 5.0, c4 > 1.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7551 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 <= 9.5, c2 > 3.5, c5 <= 5.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7552 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 <= 9.5, c2 > 3.5, c5 > 5.0, c1 <= 3.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7553 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 <= 9.5, c2 > 3.5, c5 > 5.0, c1 <= 3.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7554 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 <= 9.5, c2 > 3.5, c5 > 5.0, c1 > 3.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7556 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 > 9.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 > 9.5, c5 > 1.5, c4 <= 3.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7558 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 > 9.5, c5 > 1.5, c4 <= 3.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7560 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 > 9.5, c5 > 1.5, c4 > 3.0, c1 <= 5.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7561 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 4, s5 == 1, c3 > 9.5, c5 > 1.5, c4 > 3.0, c1 <= 5.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7566 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 <= 10.0, c2 <= 10.0, c3 > 12.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7567 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 <= 10.0, c2 <= 10.0, c3 > 12.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7568 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 <= 10.0, c2 > 10.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7569 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 <= 10.0, c2 > 10.0, c3 <= 7.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7570 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 <= 10.0, c2 > 10.0, c3 <= 7.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7571 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 > 10.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7573 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 > 10.0, c4 > 2.5, c2 <= 6.0, c5 <= 7.5, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7574 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 > 10.0, c4 > 2.5, c2 <= 6.0, c5 <= 7.5, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7575 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 > 10.0, c4 > 2.5, c2 > 6.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 > 10.0, c4 > 2.5, c2 > 6.0, c3 <= 8.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7577 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 4, c1 > 10.0, c4 > 2.5, c2 > 6.0, c3 <= 8.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7579 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 <= 2.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7580 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 > 2.5, c3 <= 2.5, c1 <= 4.5, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7581 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 > 2.5, c3 <= 2.5, c1 <= 4.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7582 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 > 2.5, c3 <= 2.5, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7583 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 > 2.5, c3 > 2.5, c1 > 11.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7584 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 > 2.5, c3 > 2.5, c1 > 11.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7585 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 > 2.5, c3 > 2.5, c1 <= 11.5, c5 <= 6.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7586 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 > 2.5, c3 > 2.5, c1 <= 11.5, c5 <= 6.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7588 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 3, c2 > 2.5, c3 > 2.5, c1 <= 11.5, c5 > 6.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7590 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 <= 10.0, c1 > 1.0, c4 > 2.0, c3 <= 4.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7592 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 <= 10.0, c1 > 1.0, c4 > 2.0, c3 > 4.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7594 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 <= 10.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7597 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 > 10.0, c1 <= 8.0, c5 <= 7.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 2, c2 > 10.0, c1 > 8.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7603 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 1, c3 <= 9.5, c1 <= 12.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7604 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 1, c3 <= 9.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7607 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 3, s5 == 1, c3 > 9.5, c1 <= 8.5, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7608 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 4, c1 <= 2.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7609 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 4, c1 <= 2.5, c2 <= 5.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7610 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 4, c1 <= 2.5, c2 <= 5.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7613 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 4, c1 > 2.5, c2 <= 12.5, c5 > 3.0, c3 > 2.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7615 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 4, c1 > 2.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7616 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 3, c1 > 1.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7618 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 3, c1 > 1.0, c3 <= 13, c2 <= 3.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 3, c1 > 1.0, c3 <= 13, c2 > 3.0, c4 > 13, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7620 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 3, c1 > 1.0, c3 <= 13, c2 > 3.0, c4 > 13, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7623 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 3, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7626 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 2, c4 <= 10.0, c3 > 2.5, c1 <= 6.5, c2 <= 7.0, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7627 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 2, c4 <= 10.0, c3 > 2.5, c1 <= 6.5, c2 <= 7.0, c5 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7629 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 2, c4 <= 10.0, c3 > 2.5, c1 > 6.5, c2 > 8.0, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7630 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 2, c4 <= 10.0, c3 > 2.5, c1 > 6.5, c2 > 8.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7631 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 2, c4 > 10.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 <= 5.0, c3 <= 6.5, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 <= 5.0, c3 <= 6.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7637 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 > 5.0, c2 > 3.0, c1 > 5.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7638 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 > 5.0, c2 > 3.0, c1 > 5.5, c3 > 3.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7640 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 > 5.0, c2 > 3.0, c1 <= 5.5, c3 <= 6.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7641 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 > 5.0, c2 > 3.0, c1 <= 5.5, c3 <= 6.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7643 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 2, s5 == 1, c5 > 5.0, c2 > 3.0, c1 <= 5.5, c3 > 6.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7646 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 4, c3 <= 6.5, c4 <= 8.5, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7647 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 4, c3 > 6.5, c1 > 1.0, c2 <= 4.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7648 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 4, c3 > 6.5, c1 > 1.0, c2 <= 4.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7654 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 3, c1 > 1.0, c2 > 1.5, c3 <= 1.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7655 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 3, c1 > 1.0, c2 > 1.5, c3 <= 1.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7656 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 3, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 <= 3.5, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7661 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 2, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7664 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 2, c4 <= 13, c1 > 2.5, c5 > 4.0, c2 <= 4.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7665 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 2, c4 <= 13, c1 > 2.5, c5 > 4.0, c2 <= 4.5, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7666 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 2, c4 <= 13, c1 > 2.5, c5 > 4.0, c2 > 4.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7668 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 1, c1 <= 10.5, c2 <= 1.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7669 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 1, c1 <= 10.5, c2 <= 1.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7671 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 1, c1 <= 10.5, c2 > 1.5, c3 <= 3.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7673 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 2, s3 == 1, s5 == 1, c1 <= 10.5, c2 > 1.5, c3 > 3.0, c4 <= 6.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7680 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 4, c1 > 1.0, c2 > 1.5, c3 > 1.5, c4 > 2.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7684 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 3, c1 > 2.0, c2 <= 13, c3 > 2.0, c4 > 13, c5 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7685 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 3, c1 > 2.0, c2 <= 13, c3 > 2.0, c4 > 13, c5 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7686 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 3, c1 > 2.0, c2 <= 13, c3 > 2.0, c4 <= 13, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7688 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 3, c1 > 2.0, c2 <= 13, c3 <= 2.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7689 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 3, c1 > 2.0, c2 <= 13, c3 <= 2.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7690 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 3, c1 <= 2.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 3, c1 <= 2.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7692 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 2, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7693 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 2, c5 <= 11, c1 <= 3.0, c2 <= 4.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7694 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 2, c5 <= 11, c1 <= 3.0, c2 <= 4.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 2, c5 <= 11, c1 > 3.0, c2 <= 12.0, c3 <= 2.5, c4 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7697 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 2, c5 <= 11, c1 > 3.0, c2 <= 12.0, c3 <= 2.5, c4 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7698 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 2, c5 <= 11, c1 > 3.0, c2 <= 12.0, c3 > 2.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7703 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 4, s5 == 1, c1 > 2.0, c5 > 2.0, c2 > 2.0, c3 > 1.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7707 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 4, c5 <= 3.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7708 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 4, c5 <= 3.0, c1 > 3.0, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7711 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 4, c5 > 3.0, c2 <= 11.5, c1 <= 10.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7712 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 4, c5 > 3.0, c2 <= 11.5, c1 <= 10.5, c3 <= 11.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7714 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 4, c5 > 3.0, c2 <= 11.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7718 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 > 2.0, c4 <= 12.0, c1 > 10.0, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7719 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 > 2.0, c4 <= 12.0, c1 > 10.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7720 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 > 2.0, c4 > 12.0, c1 <= 2.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 > 2.0, c4 > 12.0, c1 <= 2.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7722 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 > 2.0, c4 > 12.0, c1 > 2.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7724 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 <= 2.0, c5 <= 7.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7725 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 <= 2.0, c5 <= 7.5, c1 <= 5.0, c2 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7726 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 <= 2.0, c5 <= 7.5, c1 <= 5.0, c2 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7728 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 3, c3 <= 2.0, c5 > 7.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7729 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 <= 6.5, c5 <= 10.5, c4 <= 8.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7730 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 <= 6.5, c5 <= 10.5, c4 <= 8.5, c3 > 3.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7732 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 <= 6.5, c5 <= 10.5, c4 > 8.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7733 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 <= 6.5, c5 <= 10.5, c4 > 8.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7735 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 > 6.5, c2 > 1.0, c3 > 7.0, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7738 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 > 6.5, c2 <= 1.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7739 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 2, c1 > 6.5, c2 <= 1.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7740 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 1, c2 > 7.0, c1 <= 5.0, c3 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7741 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 1, c2 > 7.0, c1 <= 5.0, c3 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7742 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 1, c2 > 7.0, c1 > 5.0, c4 > 3.0, c3 <= 9.5, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7744 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 1, c2 > 7.0, c1 > 5.0, c4 > 3.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7746 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 3, s5 == 1, c2 > 7.0, c1 > 5.0, c4 <= 3.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7750 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 <= 2.5, c1 <= 6.5, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7751 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 <= 2.5, c1 <= 6.5, c2 > 10.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7752 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 <= 2.5, c1 <= 6.5, c2 > 10.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7753 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 > 2.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 > 2.5, c4 <= 13, c1 > 11.0, c2 > 2.0, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7758 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 > 2.5, c4 <= 13, c1 > 11.0, c2 > 2.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7759 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 4, c5 > 2.5, c4 <= 13, c1 > 11.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7762 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 <= 4.0, c1 <= 12.0, c4 <= 10.5, c3 <= 5.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7764 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 <= 4.0, c1 > 12.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7765 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 <= 4.0, c1 > 12.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7766 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 <= 8.0, c1 > 12, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7767 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 <= 8.0, c1 > 12, c4 <= 6.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7768 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 <= 8.0, c1 > 12, c4 <= 6.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7769 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 <= 8.0, c1 <= 12, c4 <= 3.0, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7770 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 <= 8.0, c1 <= 12, c4 <= 3.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7774 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 > 8.0, c1 > 4.5, c4 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7776 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 3, c2 > 4.0, c3 > 8.0, c1 > 4.5, c4 <= 6, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7777 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 > 1.0, c1 > 1.0, c2 <= 8.0, c3 <= 10.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7779 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 > 1.0, c1 > 1.0, c2 <= 8.0, c3 > 10.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7780 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 > 1.0, c1 > 1.0, c2 <= 8.0, c3 > 10.5, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7781 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 > 1.0, c1 > 1.0, c2 > 8.0, c5 > 2.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 > 1.0, c1 > 1.0, c2 > 8.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7784 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 > 1.0, c1 <= 1.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7785 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 2, c4 > 1.0, c1 <= 1.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7787 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 <= 7.5, c5 <= 9.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 <= 7.5, c5 <= 9.0, c3 > 6.0, c1 > 8.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7791 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 <= 7.5, c5 > 9.0, c3 <= 12.5, c1 <= 5.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7792 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 <= 7.5, c5 > 9.0, c3 <= 12.5, c1 <= 5.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7794 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 <= 7.5, c5 > 9.0, c3 <= 12.5, c1 > 5.0, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7795 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 <= 7.5, c5 > 9.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7796 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 > 7.5, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7797 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 > 7.5, c1 > 10.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7798 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 2, s5 == 1, c4 > 7.5, c1 > 10.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 4, c3 > 1.0, c1 > 2.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7802 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 4, c3 > 1.0, c1 > 2.5, c2 > 1.5, c4 <= 10.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7803 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 4, c3 > 1.0, c1 > 2.5, c2 > 1.5, c4 > 10.5, c5 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 4, c3 > 1.0, c1 > 2.5, c2 > 1.5, c4 > 10.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7805 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 4, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7806 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 <= 11.0, c3 > 1.0, c4 <= 9.0, c1 <= 12.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7809 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 <= 11.0, c3 > 1.0, c4 <= 9.0, c1 > 12.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7811 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 <= 11.0, c3 > 1.0, c4 > 9.0, c1 > 6.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 3, c5 <= 11.0, c3 <= 1.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7818 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 <= 3.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7820 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 <= 9.0, c1 <= 10.5, c3 > 5.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7821 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 <= 9.0, c1 <= 10.5, c3 <= 5.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7822 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 <= 9.0, c1 <= 10.5, c3 <= 5.5, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7823 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 <= 9.0, c1 > 10.5, c3 > 8.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7824 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 <= 9.0, c1 > 10.5, c3 > 8.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 <= 9.0, c1 > 10.5, c3 <= 8.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7826 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 <= 9.0, c1 > 10.5, c3 <= 8.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 2, c2 > 3.5, c5 > 9.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7829 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 <= 8.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7830 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 <= 8.0, c1 <= 13, c4 > 2.0, c3 <= 5.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7833 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 <= 8.0, c1 <= 13, c4 <= 2.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7834 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 <= 8.0, c1 <= 13, c4 <= 2.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 > 8.0, c5 <= 7.5, c1 <= 8.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7836 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 2, s1 == 1, s2 == 1, s3 == 1, s5 == 1, c2 > 8.0, c5 <= 7.5, c1 <= 8.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7839 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 <= 6.5, c4 <= 5.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7840 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 <= 6.5, c4 <= 5.0, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7842 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 <= 6.5, c4 > 5.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7843 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 > 6.5, c2 <= 4.0, c3 <= 10.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7844 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 > 6.5, c2 <= 4.0, c3 <= 10.0, c4 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7845 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 > 6.5, c2 <= 4.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7850 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 4, c1 > 6.5, c2 > 4.0, c4 > 5.0, c3 <= 4.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7851 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 <= 2.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 2.5, c5 > 11.5, c1 <= 10.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7855 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 2.5, c5 > 11.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7856 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 2.5, c5 <= 11.5, c1 <= 1.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7857 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 2.5, c5 <= 11.5, c1 <= 1.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7858 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 3, c4 > 2.5, c5 <= 11.5, c1 > 1.5, c2 <= 12.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7861 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 > 2.0, c1 <= 1.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7863 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 > 2.0, c1 > 1.5, c2 <= 3.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7864 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 > 2.0, c1 > 1.5, c2 <= 3.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7865 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 > 2.0, c1 > 1.5, c2 > 3.0, c3 > 1.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7868 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 <= 2.0, c1 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7869 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 <= 2.0, c1 <= 4.0, c2 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7870 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 2, c4 <= 2.0, c1 <= 4.0, c2 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7871 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 <= 4.5, c3 > 1.0, c4 > 1.0, c1 <= 3.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7872 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 <= 4.5, c3 > 1.0, c4 > 1.0, c1 <= 3.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7874 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 <= 4.5, c3 > 1.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7875 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 <= 4.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7876 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 > 4.5, c3 <= 3.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7877 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 > 4.5, c3 <= 3.0, c1 <= 11.5, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7878 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 > 4.5, c3 <= 3.0, c1 <= 11.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7883 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 4, s3 == 1, c2 > 4.5, c3 > 3.0, c4 > 8.0, c1 > 2.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7885 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 > 8.5, c1 <= 9.5, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7886 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 > 8.5, c1 <= 9.5, c3 <= 11, c2 <= 7.5, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7887 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 > 8.5, c1 <= 9.5, c3 <= 11, c2 <= 7.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7888 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 > 8.5, c1 <= 9.5, c3 <= 11, c2 > 7.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7890 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 > 8.5, c1 > 9.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7893 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 <= 8.5, c1 <= 9.5, c2 > 2.5, c3 <= 10.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7898 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 4, c5 <= 8.5, c1 > 9.5, c2 > 10.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7899 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7902 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 <= 3.5, c1 <= 4.0, c4 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7903 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 <= 3.5, c1 <= 4.0, c4 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7904 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 > 3.5, c1 > 2.0, c4 > 2.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7906 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 > 3.5, c1 > 2.0, c4 <= 2.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7907 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 > 3.5, c1 > 2.0, c4 <= 2.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7908 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 > 3.5, c1 <= 2.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 3, c2 > 2.5, c3 > 3.5, c1 <= 2.0, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7914 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 12.0, c3 <= 2.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 12.0, c3 <= 2.0, c2 > 5.0, c4 <= 11.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7917 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 2, c1 <= 12.0, c3 <= 2.0, c2 > 5.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7919 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c4 > 1.0, c1 > 2.0, c2 > 1.0, c5 > 2.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7924 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 3, s3 == 1, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#7925 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 > 2.0, c3 <= 12.5, c4 <= 5.0, c1 <= 11.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7927 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 > 2.0, c3 <= 12.5, c4 <= 5.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7929 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 > 2.0, c3 <= 12.5, c4 > 5.0, c1 <= 2.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7932 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 > 2.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#7934 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 4, c2 <= 2.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7935 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 <= 5.0, c4 <= 10.0, c3 > 6.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7937 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 <= 5.0, c4 <= 10.0, c3 > 6.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7938 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 <= 5.0, c4 <= 10.0, c3 <= 6.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7940 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 <= 5.0, c4 > 10.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7941 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 <= 5.0, c4 > 10.0, c3 > 10.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7942 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 <= 5.0, c4 > 10.0, c3 > 10.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#7943 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 > 5.0, c3 <= 1.5, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7944 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 > 5.0, c3 <= 1.5, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7947 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 > 5.0, c3 > 1.5, c5 > 11.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7948 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 3, c1 <= 12, c2 > 5.0, c3 > 1.5, c5 > 11.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7949 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 <= 3.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7951 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 <= 3.0, c3 > 3.0, c5 > 5.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7955 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 3.0, c3 > 1.0, c2 > 2.0, c4 <= 2.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7957 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 3.0, c3 > 1.0, c2 <= 2.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7959 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 2, c1 > 3.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7960 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c5 > 1.0, c1 > 1.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7962 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c5 > 1.0, c1 > 1.0, c2 > 1.5, c3 > 1.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7963 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c5 > 1.0, c1 > 1.0, c2 > 1.5, c3 <= 1.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7964 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c5 > 1.0, c1 > 1.0, c2 > 1.5, c3 <= 1.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7965 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 1.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7966 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c5 > 1.0, c1 <= 1.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7967 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 2, s3 == 1, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7968 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7969 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 <= 5.0, c3 <= 1.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7970 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 <= 5.0, c3 <= 1.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 <= 5.0, c3 > 1.5, c4 <= 9.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7974 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 > 5.0, c4 <= 4.0, c1 <= 10.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7975 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 > 5.0, c4 <= 4.0, c1 <= 10.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7976 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 > 5.0, c4 <= 4.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7977 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 > 5.0, c4 > 4.0, c3 <= 4.0, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7978 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 > 5.0, c4 > 4.0, c3 <= 4.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7980 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 4, c5 <= 13, c2 > 5.0, c4 > 4.0, c3 > 4.0, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7983 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 <= 10.0, c2 > 1.0, c3 > 1.0, c1 > 3.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7984 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 <= 10.0, c2 > 1.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7985 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 <= 10.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7987 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 > 10.0, c3 <= 8.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7989 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 > 10.0, c3 > 8.5, c2 <= 7.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7990 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 3, c4 > 10.0, c3 > 8.5, c2 <= 7.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7991 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 <= 9.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7996 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 > 9.0, c1 <= 7.5, c2 <= 6.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#7997 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 > 9.0, c1 <= 7.5, c2 <= 6.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 > 9.0, c1 <= 7.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#7999 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 > 9.0, c1 > 7.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8000 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 > 9.0, c1 > 7.5, c5 > 1.5, c2 <= 3.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8001 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 > 9.0, c1 > 7.5, c5 > 1.5, c2 <= 3.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8002 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 > 9.0, c1 > 7.5, c5 > 1.5, c2 > 3.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8003 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 2, c4 > 9.0, c1 > 7.5, c5 > 1.5, c2 > 3.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8004 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c1 > 11.5, c2 <= 10.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8005 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c1 > 11.5, c2 <= 10.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8006 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c1 > 11.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8008 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c1 <= 11.5, c5 > 3.5, c2 <= 1.5, c3 <= 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8009 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c1 <= 11.5, c5 > 3.5, c2 <= 1.5, c3 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8012 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 4, s2 == 1, s3 == 1, c1 <= 11.5, c5 > 3.5, c2 > 1.5, c3 > 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8014 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 <= 9.5, c2 > 3.0, c3 > 1.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8016 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 <= 9.5, c2 > 3.0, c3 <= 1.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8017 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 <= 9.5, c2 > 3.0, c3 <= 1.0, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8019 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 > 9.5, c2 <= 2.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8022 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 4, c1 > 1.0, c4 > 9.5, c2 > 2.5, c3 > 3.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8025 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 <= 10.5, c3 > 2.0, c5 <= 11.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8028 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 <= 10.5, c3 <= 2.0, c1 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8029 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 <= 10.5, c3 <= 2.0, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8030 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 > 10.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8031 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 > 10.5, c3 > 4.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8032 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 > 10.5, c3 > 4.0, c4 > 1.5, c1 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8033 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 > 10.5, c3 > 4.0, c4 > 1.5, c1 <= 11, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8034 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 3, c2 > 10.5, c3 > 4.0, c4 > 1.5, c1 <= 11, c5 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8035 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 <= 4.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 <= 4.0, c3 > 2.5, c1 <= 3.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8037 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 <= 4.0, c3 > 2.5, c1 <= 3.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8042 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 > 4.0, c1 > 1.0, c4 > 10.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8043 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 > 4.0, c1 > 1.0, c4 > 10.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8044 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 > 4.0, c1 <= 1.0, c3 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8045 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 <= 11.0, c5 > 4.0, c1 <= 1.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8046 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 11.0, c1 > 5.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8048 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 2, c2 > 11.0, c1 > 5.5, c5 > 2.5, c3 > 8.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8053 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c2 > 1.0, c5 <= 12.0, c4 <= 9.5, c3 > 10.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8055 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c2 > 1.0, c5 <= 12.0, c4 > 9.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8056 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c2 > 1.0, c5 <= 12.0, c4 > 9.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c2 > 1.0, c5 > 12.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8059 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 4, s2 == 1, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8060 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 <= 3.0, c2 > 1.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8061 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 <= 3.0, c2 > 1.0, c3 > 3.0, c4 <= 6.5, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8065 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 <= 3.0, c2 <= 1.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8066 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 <= 3.0, c2 <= 1.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8067 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 <= 12.0, c3 <= 12.5, c4 <= 3.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8068 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 <= 12.0, c3 <= 12.5, c4 <= 3.0, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8071 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 <= 12.0, c3 > 12.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8072 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 <= 12.0, c3 > 12.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8073 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 > 12.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8074 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 > 12.0, c3 > 7.5, c4 <= 12.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8075 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 > 12.0, c3 > 7.5, c4 <= 12.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8076 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 4, c1 > 3.0, c2 > 12.0, c3 > 7.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8078 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 > 7.0, c2 <= 6.5, c1 > 5.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8083 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 > 7.0, c2 > 6.5, c1 > 9.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8084 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 <= 7.0, c1 <= 12.5, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8085 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 <= 7.0, c1 <= 12.5, c2 <= 12, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8088 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 3, c5 <= 7.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8089 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8090 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 > 5.5, c1 > 2.0, c2 <= 3.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8091 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 > 5.5, c1 > 2.0, c2 <= 3.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8094 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 > 5.5, c1 <= 2.0, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8095 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 > 5.5, c1 <= 2.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8096 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 <= 5.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8099 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 2, c5 <= 13, c4 <= 5.5, c2 <= 13, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8100 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 <= 3.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 <= 3.5, c3 > 1.5, c1 <= 4.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8102 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 <= 3.5, c3 > 1.5, c1 <= 4.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8103 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 <= 3.5, c3 > 1.5, c1 > 4.5, c2 <= 10.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8104 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 <= 3.5, c3 > 1.5, c1 > 4.5, c2 <= 10.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8105 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 <= 3.5, c3 > 1.5, c1 > 4.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8106 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 > 3.5, c2 <= 4.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8107 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 3, s2 == 1, c4 > 3.5, c2 <= 4.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8110 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c5 > 1.0, c2 > 1.0, c1 <= 12.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#8112 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c5 > 1.0, c2 > 1.0, c1 <= 12.5, c3 <= 13, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8113 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c5 > 1.0, c2 > 1.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8114 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c5 > 1.0, c2 <= 1.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8115 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c5 > 1.0, c2 <= 1.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8116 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 4, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8117 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 <= 7.5, c3 <= 7.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8118 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 <= 7.5, c3 <= 7.5, c2 > 4.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8120 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 <= 7.5, c3 <= 7.5, c2 > 4.5, c4 > 5.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8121 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 <= 7.5, c3 > 7.5, c1 <= 6.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 <= 7.5, c3 > 7.5, c1 <= 6.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8123 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 <= 7.5, c3 > 7.5, c1 > 6.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8127 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 > 7.5, c3 > 7.5, c4 <= 2.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8128 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 3, c5 > 7.5, c3 > 7.5, c4 <= 2.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8129 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 <= 3.5, c1 <= 10.0, c3 <= 3.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8130 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 <= 3.5, c1 <= 10.0, c3 <= 3.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8132 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 <= 3.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8134 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 > 3.5, c1 > 6.5, c2 <= 8.5, c5 > 7.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8136 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 > 3.5, c1 > 6.5, c2 <= 8.5, c5 <= 7.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8137 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 > 3.5, c1 > 6.5, c2 <= 8.5, c5 <= 7.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8138 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 > 3.5, c1 > 6.5, c2 > 8.5, c3 <= 8.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8140 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 > 3.5, c1 > 6.5, c2 > 8.5, c3 > 8.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8141 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 2, c4 > 3.5, c1 > 6.5, c2 > 8.5, c3 > 8.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8142 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 > 1.0, c4 <= 11.0, c1 > 2.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8144 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 > 1.0, c4 <= 11.0, c1 <= 2.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8145 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 > 1.0, c4 <= 11.0, c1 <= 2.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8146 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 > 1.0, c4 > 11.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8147 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 > 1.0, c4 > 11.0, c1 <= 8.0, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8148 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 > 1.0, c4 > 11.0, c1 <= 8.0, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8149 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 <= 1.0, c1 <= 10.5, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8150 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 <= 1.0, c1 <= 10.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8151 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 <= 10.5, c3 <= 1.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8152 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 > 10.5, c3 > 5.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8155 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 > 10.5, c3 > 5.5, c4 > 4.0, c1 > 4.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8156 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 > 10.5, c3 <= 5.5, c1 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 2, s2 == 1, c2 > 10.5, c3 <= 5.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8158 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8159 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c4 > 1.5, c1 <= 3.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8160 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c4 > 1.5, c1 <= 3.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8165 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 4, c4 > 1.5, c1 > 3.0, c5 > 1.5, c2 <= 5.5, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8166 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 <= 10.0, c1 > 1.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8167 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 <= 10.0, c1 > 1.0, c5 > 1.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8169 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 <= 10.0, c1 <= 1.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8170 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 <= 10.0, c1 <= 1.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8171 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 > 10.0, c1 > 5.0, c3 <= 10.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8172 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 > 10.0, c1 > 5.0, c3 <= 10.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 > 10.0, c1 > 5.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8174 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 > 10.0, c1 <= 5.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8175 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 3, c2 <= 11.0, c4 > 10.0, c1 <= 5.0, c3 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8182 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c5 > 1.5, c3 > 1.0, c1 > 11.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8183 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c5 > 1.5, c3 <= 1.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c5 > 1.5, c3 <= 1.0, c1 <= 7.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8185 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 2, c5 > 1.5, c3 <= 1.0, c1 <= 7.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8186 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8190 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 1.5, c5 > 2.0, c1 > 10.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8193 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 3, s3 == 1, s2 == 1, c3 > 1.5, c5 <= 2.0, c1 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8194 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 <= 5.0, c3 <= 3.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8195 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 <= 5.0, c3 <= 3.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8196 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 <= 5.0, c3 > 3.5, c4 <= 8.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8199 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 > 5.0, c1 <= 6.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8200 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 > 1.0, c2 > 5.0, c1 <= 6.0, c4 > 2.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8205 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 4, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8209 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 3, c2 > 1.5, c1 > 1.0, c3 <= 12.0, c4 <= 1.0, c5 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8210 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 3, c2 > 1.5, c1 > 1.0, c3 <= 12.0, c4 <= 1.0, c5 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8212 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 3, c2 > 1.5, c1 > 1.0, c3 > 12.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8213 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 3, c2 > 1.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8215 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 <= 2.5, c1 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8217 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 <= 7.5, c5 <= 3.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8218 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 <= 7.5, c5 > 3.0, c1 <= 5.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8219 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 <= 7.5, c5 > 3.0, c1 <= 5.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8220 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 <= 7.5, c5 > 3.0, c1 > 5.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8222 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 > 7.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8223 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 > 7.5, c5 > 3.5, c1 > 1.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8224 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 > 7.5, c5 > 3.5, c1 > 1.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8225 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 2, c4 > 2.5, c2 > 7.5, c5 > 3.5, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8226 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 1, c5 <= 4.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8229 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 1, c5 > 4.0, c1 <= 13, c2 <= 2.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8230 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 1, c5 > 4.0, c1 <= 13, c2 <= 2.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8233 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 1, c5 > 4.0, c1 <= 13, c2 > 2.5, c3 > 11.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8234 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 4, s2 == 1, c5 > 4.0, c1 <= 13, c2 > 2.5, c3 > 11.0, c4 <= 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8236 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 <= 5.5, c4 <= 8.5, c2 <= 2.5, c3 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8237 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 <= 5.5, c4 <= 8.5, c2 <= 2.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8240 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 > 5.5, c4 > 8.0, c5 <= 4.0, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8241 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 > 5.5, c4 > 8.0, c5 <= 4.0, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8243 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 > 5.5, c4 > 8.0, c5 > 4.0, c3 <= 5.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8244 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 4, c1 > 5.5, c4 > 8.0, c5 > 4.0, c3 <= 5.5, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8245 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 <= 8.0, c4 > 13, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8246 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 <= 8.0, c4 > 13, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8250 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 > 8.0, c4 <= 6.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 > 8.0, c4 > 6.0, c3 <= 5.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8253 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 > 8.0, c4 > 6.0, c3 <= 5.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8254 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 > 8.0, c4 > 6.0, c3 > 5.0, c5 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8255 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 <= 9.0, c2 > 8.0, c4 > 6.0, c3 > 5.0, c5 <= 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8257 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 > 9.0, c2 > 7.0, c3 > 9.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8258 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 > 9.0, c2 > 7.0, c3 > 9.0, c4 <= 5.0, c5 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8259 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 > 9.0, c2 > 7.0, c3 > 9.0, c4 <= 5.0, c5 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8260 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 > 9.0, c2 <= 7.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8261 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 3, c1 > 9.0, c2 <= 7.0, c5 > 1.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8263 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 <= 11.0, c2 <= 5.0, c1 <= 4.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8264 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 <= 11.0, c2 <= 5.0, c1 <= 4.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8265 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 <= 11.0, c2 <= 5.0, c1 > 4.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8267 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 <= 11.0, c2 > 5.0, c5 <= 11.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8269 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 <= 11.0, c2 > 5.0, c5 > 11.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8272 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 > 1.0, c3 > 11.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8274 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 2, c4 <= 1.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8276 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 > 1.5, c4 > 1.0, c3 <= 3.0, c2 > 1.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8279 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 > 1.5, c4 > 1.0, c3 > 3.0, c5 <= 6.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8283 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 > 1.5, c4 <= 1.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8284 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 3, s2 == 1, c1 > 1.5, c4 <= 1.0, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8285 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 <= 4.5, c3 <= 4.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8286 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 <= 4.5, c3 <= 4.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8288 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 <= 4.5, c3 > 4.0, c2 <= 6.0, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8292 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 > 4.5, c2 > 1.0, c4 > 11.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8293 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 > 2.0, c5 > 4.5, c2 > 1.0, c4 > 11.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8295 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 <= 2.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8296 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 4, c1 <= 2.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8299 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 3, c4 > 4.5, c3 <= 3.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8300 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 3, c4 > 4.5, c3 <= 3.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8301 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 3, c4 > 4.5, c3 > 3.5, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8305 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 <= 3.5, c4 <= 7.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8306 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 <= 3.5, c4 <= 7.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8308 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 > 3.5, c4 <= 3.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8309 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 > 3.5, c4 <= 3.0, c1 <= 8.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 > 3.5, c4 <= 3.0, c1 <= 8.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8312 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 > 3.5, c4 > 3.0, c1 > 4.0, c5 <= 8.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 > 3.5, c4 > 3.0, c1 > 4.0, c5 <= 8.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8314 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 > 3.5, c4 > 3.0, c1 <= 4.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8315 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 > 3.5, c4 > 3.0, c1 <= 4.0, c2 <= 7.0, c5 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8316 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 2, c3 > 3.5, c4 > 3.0, c1 <= 4.0, c2 <= 7.0, c5 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8317 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 <= 3.5, c1 <= 8.0, c3 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8318 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 <= 3.5, c1 <= 8.0, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8320 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 <= 3.5, c1 > 8.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8323 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 > 3.5, c3 <= 9.0, c1 > 6.5, c4 <= 6.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8324 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 > 3.5, c3 <= 9.0, c1 > 6.5, c4 <= 6.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8327 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 2, s2 == 1, c2 > 3.5, c3 > 9.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 4, c1 > 1.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8334 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 4, c1 <= 1.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8336 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 <= 10.0, c1 <= 3.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8337 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 <= 10.0, c1 <= 3.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8338 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 <= 10.0, c1 > 3.0, c2 > 13, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8339 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 <= 10.0, c1 > 3.0, c2 > 13, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8342 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 <= 10.0, c1 > 3.0, c2 <= 13, c4 <= 2.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8343 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 <= 10.0, c1 > 3.0, c2 <= 13, c4 <= 2.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8345 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 > 10.0, c1 <= 5.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8346 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 3, c3 > 10.0, c1 <= 5.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8347 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 > 11.5, c3 > 1.0, c2 <= 8.0, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8348 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 > 11.5, c3 > 1.0, c2 <= 8.0, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8349 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 > 11.5, c3 > 1.0, c2 > 8.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8351 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 > 11.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8353 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 <= 11.5, c3 <= 3.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8354 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 <= 11.5, c3 > 3.0, c4 <= 5.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8356 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 2, c1 <= 11.5, c3 > 3.0, c4 <= 5.0, c2 <= 11.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8360 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 1, c1 <= 12.0, c2 > 1.0, c4 <= 10.0, c3 <= 3.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8361 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 1, c1 <= 12.0, c2 > 1.0, c4 <= 10.0, c3 <= 3.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8365 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 1, c1 <= 12.0, c2 <= 1.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8366 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 2, s3 == 1, s2 == 1, c1 <= 12.0, c2 <= 1.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8368 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 <= 4.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8369 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 <= 4.5, c1 <= 11.5, c2 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8370 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 <= 4.5, c1 <= 11.5, c2 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8372 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 > 4.5, c1 > 7.0, c2 > 2.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8374 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 > 4.5, c1 <= 7.0, c5 <= 4.0, c2 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8375 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 > 4.5, c1 <= 7.0, c5 <= 4.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8376 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 > 1.0, c4 > 4.5, c1 <= 7.0, c5 > 4.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8378 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 <= 1.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8379 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 4, c3 <= 1.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8382 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 <= 12.0, c1 <= 5.0, c3 <= 12.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8383 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 <= 12.0, c1 <= 5.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8387 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 <= 12.0, c1 > 5.0, c2 > 1.0, c3 > 9.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8388 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 3, c4 <= 12.0, c1 > 5.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8392 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 <= 10.0, c1 > 2.0, c4 <= 7.5, c2 > 8.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8393 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 <= 10.0, c1 > 2.0, c4 <= 7.5, c2 > 8.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8396 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 > 10.0, c2 > 1.0, c1 > 7.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8397 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 > 10.0, c2 > 1.0, c1 > 7.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8399 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 2, c3 > 10.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8400 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8402 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 13, c1 <= 12.5, c4 <= 8.0, c2 <= 12.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8403 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 13, c1 <= 12.5, c4 <= 8.0, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8408 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 4, s3 == 1, c3 <= 13, c1 > 12.5, c5 <= 9.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8411 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c5 > 2.0, c2 > 2.5, c1 > 9, c3 > 1.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8412 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c5 > 2.0, c2 > 2.5, c1 > 9, c3 > 1.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8413 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c5 > 2.0, c2 > 2.5, c1 > 9, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c5 > 2.0, c2 > 2.5, c1 <= 9, c3 > 11.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8417 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 4, c5 > 2.0, c2 > 2.5, c1 <= 9, c3 > 11.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8421 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 > 8.5, c2 > 6.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8422 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 > 8.5, c2 <= 6.5, c3 <= 9.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8423 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 > 8.5, c2 <= 6.5, c3 <= 9.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8426 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 <= 8.5, c2 > 7.0, c4 <= 8.5, c3 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8427 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 <= 8.5, c2 > 7.0, c4 <= 8.5, c3 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 <= 8.5, c2 > 7.0, c4 > 8.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8431 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 3, c5 <= 11.5, c1 <= 8.5, c2 <= 7.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8432 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c1 > 1.0, c4 <= 12.0, c2 <= 4.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8433 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c1 > 1.0, c4 <= 12.0, c2 <= 4.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8434 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c1 > 1.0, c4 <= 12.0, c2 > 4.0, c3 <= 4.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8437 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 2, c1 > 1.0, c4 <= 12.0, c2 > 4.0, c3 > 4.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8441 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c4 > 13, c1 <= 3.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8442 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c4 > 13, c1 <= 3.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8445 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c4 <= 13, c2 <= 12.0, c1 > 2.0, c3 > 3.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8448 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 3, s3 == 1, c4 <= 13, c2 > 12.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8449 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 10.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8452 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 <= 10.5, c2 <= 11.5, c1 <= 10.0, c3 > 5.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8456 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 4, c5 > 10.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8462 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 <= 2.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8463 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c1 > 1.0, c2 <= 2.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c1 <= 1.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8465 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 3, c1 <= 1.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8466 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c3 > 12, c1 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8467 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c3 > 12, c1 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8473 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c3 <= 12, c2 <= 1.0, c1 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8474 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 2, c3 <= 12, c2 <= 1.0, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8475 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 > 7.0, c2 > 2.0, c5 > 13, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8476 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 > 7.0, c2 > 2.0, c5 > 13, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8479 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 > 7.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8481 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 <= 7.0, c5 <= 10.5, c1 <= 6.5, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8482 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 <= 7.0, c5 <= 10.5, c1 > 6.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8483 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 <= 11.0, c3 <= 7.0, c5 <= 10.5, c1 > 6.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8485 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 > 11.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8486 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 > 11.0, c1 > 7.5, c2 <= 10.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8487 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 > 11.0, c1 > 7.5, c2 <= 10.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8488 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 2, s3 == 1, c4 > 11.0, c1 > 7.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8489 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 <= 5.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8490 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 <= 5.0, c5 > 3.5, c1 <= 10.0, c2 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8491 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 <= 5.0, c5 > 3.5, c1 <= 10.0, c2 <= 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8493 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 > 1.0, c3 <= 5.0, c5 > 3.5, c1 > 10.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8499 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 4, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8502 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 > 2.0, c5 > 6.5, c4 <= 5.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 > 2.0, c5 > 6.5, c4 > 5.0, c2 > 7.5, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8508 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 <= 2.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8509 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 3, c1 <= 2.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8510 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c5 <= 4.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8511 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c5 <= 4.5, c1 <= 8.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8512 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c5 <= 4.5, c1 <= 8.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8513 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c5 > 4.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8515 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c5 > 4.5, c3 <= 13, c4 <= 12.5, c1 > 7.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8517 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c5 > 4.5, c3 <= 13, c4 <= 12.5, c1 <= 7.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8518 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 2, c5 > 4.5, c3 <= 13, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8521 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c2 > 4.0, c4 > 3.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8523 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c2 > 4.0, c4 > 3.0, c5 > 1.5, c1 <= 4.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8524 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 4, s5 == 1, s2 == 1, s3 == 1, c2 > 4.0, c4 > 3.0, c5 > 1.5, c1 > 4.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8527 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 > 11.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8529 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 <= 11.5, c4 <= 8.5, c1 <= 5.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8531 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 <= 11.5, c4 <= 8.5, c1 > 5.0, c2 <= 3.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8534 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 <= 11.5, c4 > 8.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8536 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 4, c5 <= 11.5, c4 > 8.5, c3 > 2.5, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8537 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 <= 5.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8538 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 <= 5.0, c3 > 1.5, c1 <= 9.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8540 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 <= 5.0, c3 > 1.5, c1 <= 9.5, c5 > 1.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8541 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 <= 5.0, c3 > 1.5, c1 > 9.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8543 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 > 5.0, c5 <= 10.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8544 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 > 5.0, c5 <= 10.0, c2 > 4.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8546 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 > 5.0, c5 <= 10.0, c2 > 4.0, c3 > 1.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8547 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 3, c4 > 5.0, c5 > 10.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8553 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c3 <= 13, c1 > 2.5, c2 <= 6.5, c4 <= 13, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8554 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c3 <= 13, c1 > 2.5, c2 > 6.5, c4 > 7.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8556 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c3 <= 13, c1 > 2.5, c2 > 6.5, c4 <= 7.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8557 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 2, c3 <= 13, c1 > 2.5, c2 > 6.5, c4 <= 7.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8558 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 <= 3.0, c4 <= 3.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8560 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 <= 3.0, c4 <= 3.5, c1 > 8.0, c2 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8562 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 <= 3.0, c4 > 3.5, c1 <= 8.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8563 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 <= 3.0, c4 > 3.5, c1 <= 8.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8564 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 <= 11.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8565 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 <= 11.0, c4 > 1.5, c3 <= 5.0, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 > 11.0, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8570 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 > 11.0, c4 > 1.5, c2 > 3.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8572 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 > 11.0, c4 > 1.5, c2 <= 3.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8573 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 4, s3 == 1, c5 > 3.0, c1 > 11.0, c4 > 1.5, c2 <= 3.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8574 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8575 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 1.5, c2 <= 12.5, c3 > 13, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 1.5, c2 <= 12.5, c3 > 13, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8577 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 1.5, c2 <= 12.5, c3 <= 13, c4 <= 1.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8578 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 1.5, c2 <= 12.5, c3 <= 13, c4 <= 1.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8580 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 1.5, c2 <= 12.5, c3 <= 13, c4 > 1.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8581 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 1.5, c2 > 12.5, c3 <= 10.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8582 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 1.5, c2 > 12.5, c3 <= 10.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8583 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 4, c1 > 1.5, c2 > 12.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8584 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 7.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8585 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 7.0, c3 <= 13, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8587 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 > 7.0, c3 <= 13, c4 > 3.5, c2 > 3.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8592 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 7.0, c3 <= 7.0, c5 <= 8.0, c2 <= 9.0, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8593 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 7.0, c3 <= 7.0, c5 <= 8.0, c2 <= 9.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8595 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 3, c1 <= 7.0, c3 <= 7.0, c5 <= 8.0, c2 > 9.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8596 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c4 > 13, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8597 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c4 > 13, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c4 <= 13, c1 > 2.0, c5 > 1.0, c2 > 1.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8601 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c4 <= 13, c1 > 2.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8602 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 2, c4 <= 13, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8603 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8604 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 <= 13, c1 <= 8.0, c4 <= 11.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8610 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 <= 13, c1 > 8.0, c4 <= 10.5, c2 <= 12.5, c5 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8611 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 3, s3 == 1, c3 <= 13, c1 > 8.0, c4 <= 10.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8613 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c1 > 1.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8614 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c1 > 1.0, c3 > 1.5, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8617 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c2 > 1.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8618 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 4, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 <= 12.5, c3 > 11.5, c1 > 5.5, c4 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8620 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 <= 12.5, c3 > 11.5, c1 > 5.5, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8621 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 <= 12.5, c3 > 11.5, c1 <= 5.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8622 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 <= 12.5, c3 > 11.5, c1 <= 5.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8624 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 <= 12.5, c3 <= 11.5, c5 > 3.5, c1 > 13, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 <= 12.5, c3 <= 11.5, c5 > 3.5, c1 > 13, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8626 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 <= 12.5, c3 <= 11.5, c5 > 3.5, c1 <= 13, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8628 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 3, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8629 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 <= 5.0, c4 <= 6.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8630 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 <= 5.0, c4 <= 6.0, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8631 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 <= 5.0, c4 > 6.0, c2 <= 5.5, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 > 5.0, c4 <= 9.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8636 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 > 5.0, c4 > 9.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8637 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 > 5.0, c4 > 9.5, c2 <= 11.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8638 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 <= 7.5, c1 > 5.0, c4 > 9.5, c2 <= 11.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8639 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 > 7.5, c1 <= 4.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8640 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 > 7.5, c1 <= 4.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8641 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 > 7.5, c1 > 4.0, c2 <= 5.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8645 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 2, c5 > 7.5, c1 > 4.0, c2 > 5.0, c3 <= 11.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8646 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 <= 3.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8648 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 <= 3.0, c4 > 4.5, c1 <= 11.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8649 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 <= 3.0, c4 > 4.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8654 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 > 3.0, c2 > 1.0, c1 > 9.0, c4 > 8.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8655 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 > 3.0, c2 > 1.0, c1 > 9.0, c4 > 8.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8657 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 > 3.0, c2 > 1.0, c1 > 9.0, c4 <= 8.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8658 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 2, s3 == 1, c3 > 3.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8660 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c4 > 11.5, c2 <= 8.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8661 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c4 > 11.5, c2 <= 8.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8662 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c4 <= 11.5, c5 <= 11.0, c1 <= 12.0, c2 > 5.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8664 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c4 <= 11.5, c5 <= 11.0, c1 <= 12.0, c2 <= 5.5, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8666 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 4, c4 <= 11.5, c5 <= 11.0, c1 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 <= 11.0, c3 <= 2.5, c1 <= 11.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8669 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 <= 11.0, c3 <= 2.5, c1 <= 11.0, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8670 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 <= 11.0, c3 <= 2.5, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8671 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 <= 11.0, c3 > 2.5, c1 > 11.5, c4 <= 10.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8672 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 <= 11.0, c3 > 2.5, c1 > 11.5, c4 <= 10.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8673 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 <= 11.0, c3 > 2.5, c1 > 11.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8675 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 <= 11.0, c3 > 2.5, c1 <= 11.5, c4 > 5.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8677 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 > 11.0, c3 <= 4.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8678 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 3, c2 > 11.0, c3 <= 4.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8680 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 <= 10.5, c1 <= 12.5, c3 > 1.0, c5 <= 11.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8684 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 <= 10.5, c1 <= 12.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8685 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 <= 10.5, c1 > 12.5, c2 <= 4.5, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8686 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 <= 10.5, c1 > 12.5, c2 <= 4.5, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8687 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 <= 10.5, c1 > 12.5, c2 > 4.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8688 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 <= 10.5, c1 > 12.5, c2 > 4.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8690 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 > 10.5, c2 > 7.0, c1 > 4.0, c3 > 4.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8691 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 > 10.5, c2 > 7.0, c1 > 4.0, c3 > 4.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8692 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 > 10.5, c2 > 7.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8693 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 2, c4 > 10.5, c2 <= 7.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8695 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 <= 8.0, c1 <= 8.0, c4 > 2.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8700 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 <= 8.0, c1 > 8.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8702 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 > 8.0, c1 <= 9.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8704 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 4, s2 == 1, s3 == 1, c2 > 8.0, c1 > 9.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8709 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 4, c2 > 1.0, c5 <= 2.0, c1 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8710 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 4, c2 > 1.0, c5 <= 2.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8711 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 4, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8712 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 <= 2.5, c3 <= 11.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8713 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 <= 2.5, c3 <= 11.0, c2 > 4.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8716 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 > 2.5, c2 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8717 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 > 2.5, c2 <= 11, c3 > 7.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8719 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 3, c1 > 2.5, c2 <= 11, c3 <= 7.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8722 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 <= 5.0, c3 <= 12.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8723 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 <= 5.0, c3 <= 12.5, c4 > 4.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8725 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 <= 5.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8726 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 > 5.0, c3 <= 8.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8727 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 > 5.0, c3 <= 8.0, c5 > 4.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8729 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 > 5.0, c3 > 8.0, c4 <= 12.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8731 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 2, c1 <= 10.5, c2 > 5.0, c3 > 8.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8735 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 > 2.0, c4 <= 3.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8736 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 > 2.0, c4 > 3.0, c1 <= 9.5, c2 <= 2.5, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8737 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 > 2.0, c4 > 3.0, c1 <= 9.5, c2 <= 2.5, c5 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8738 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 > 2.0, c4 > 3.0, c1 <= 9.5, c2 > 2.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8740 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 > 2.0, c4 > 3.0, c1 > 9.5, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8743 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 4, s2 == 1, c3 <= 2.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8745 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 <= 4.5, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8746 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 > 4.5, c1 <= 4.5, c5 <= 7.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8747 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 > 4.5, c1 <= 4.5, c5 <= 7.5, c2 > 7.5, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8748 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 > 4.5, c1 <= 4.5, c5 <= 7.5, c2 > 7.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8750 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 > 4.5, c1 > 4.5, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8752 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 4, c4 > 4.5, c1 > 4.5, c2 <= 13, c3 <= 8.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8756 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 3, c1 > 3.0, c2 <= 8.0, c3 <= 4.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8757 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 3, c1 > 3.0, c2 <= 8.0, c3 <= 4.0, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8758 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 3, c1 > 3.0, c2 <= 8.0, c3 > 4.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8761 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 3, c1 > 3.0, c2 > 8.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8763 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 3, c1 > 3.0, c2 > 8.0, c5 > 4.5, c3 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8769 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 2, c3 > 2.0, c4 <= 1.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8770 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 2, c3 > 2.0, c4 <= 1.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8771 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 2, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8772 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 1, c3 > 2.0, c4 <= 1.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8773 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 1, c3 > 2.0, c4 <= 1.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8774 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 1, c3 > 2.0, c4 > 1.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 1, c3 > 2.0, c4 > 1.5, c5 > 1.5, c1 <= 2.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8779 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 1, c3 <= 2.0, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8780 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 3, s2 == 1, c3 <= 2.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8782 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 <= 8.0, c4 <= 4.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 <= 8.0, c4 > 4.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8786 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 <= 8.0, c4 > 4.5, c3 > 2.5, c2 > 12.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8787 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 <= 8.0, c4 > 4.5, c3 > 2.5, c2 > 12.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8788 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 > 8.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8789 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 > 8.0, c5 <= 13, c3 <= 3.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8790 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 > 8.0, c5 <= 13, c3 <= 3.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8791 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 > 8.0, c5 <= 13, c3 > 3.0, c2 <= 12.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8794 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 4, c1 > 8.0, c5 <= 13, c3 > 3.0, c2 > 12.5, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8795 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8796 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 <= 13, c5 <= 3.5, c1 <= 9.0, c3 <= 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8797 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 <= 13, c5 <= 3.5, c1 <= 9.0, c3 > 2, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8799 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 <= 13, c5 > 3.5, c1 <= 1.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8800 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 <= 13, c5 > 3.5, c1 <= 1.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8801 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 <= 13, c5 > 3.5, c1 > 1.5, c3 > 13, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8802 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 <= 13, c5 > 3.5, c1 > 1.5, c3 > 13, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 3, c2 <= 13, c5 > 3.5, c1 > 1.5, c3 <= 13, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8809 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c4 > 2.0, c5 > 6.0, c1 > 7.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8810 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c4 <= 2.0, c1 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8811 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 2, c2 > 1.0, c4 <= 2.0, c1 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8812 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 2, c2 <= 1.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 2, c2 <= 1.0, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8815 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 <= 12.0, c4 <= 10.0, c1 > 1.0, c5 <= 4.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8819 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 <= 12.0, c4 > 10.0, c1 > 5.5, c3 <= 6.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8820 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 <= 12.0, c4 > 10.0, c1 > 5.5, c3 <= 6.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8821 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 <= 12.0, c4 > 10.0, c1 > 5.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8822 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 <= 12.0, c4 > 10.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8824 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 2, s2 == 1, c2 > 12.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8825 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 4, c4 > 2.0, c1 > 1.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8826 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 4, c4 > 2.0, c1 > 1.0, c3 > 2.5, c5 <= 10.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8829 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 4, c4 > 2.0, c1 > 1.0, c3 > 2.5, c5 > 10.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8831 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 4, c4 > 2.0, c1 <= 1.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8833 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 4, c4 <= 2.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8834 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 3, c5 <= 12.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#8836 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 3, c5 <= 12.0, c3 > 2.5, c1 > 1.0, c2 <= 7.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8839 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 3, c5 <= 12.0, c3 > 2.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8841 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 <= 2.5, c1 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8843 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 <= 10.0, c2 > 2.0, c1 > 7.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8845 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 <= 10.0, c2 > 2.0, c1 <= 7.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8847 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 <= 10.0, c2 <= 2.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8848 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 <= 10.0, c2 <= 2.0, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8849 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 > 10.0, c3 > 2.0, c1 <= 2.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8850 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 > 10.0, c3 > 2.0, c1 <= 2.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8851 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 > 10.0, c3 > 2.0, c1 > 2.5, c2 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8852 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 > 10.0, c3 > 2.0, c1 > 2.5, c2 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 2, c4 > 2.5, c5 > 10.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8854 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 <= 1.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8856 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 <= 10.0, c1 <= 10.0, c3 > 3.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8859 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 <= 10.0, c1 > 10.0, c3 <= 11.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8860 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 <= 10.0, c1 > 10.0, c3 <= 11.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8861 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 <= 10.0, c1 > 10.0, c3 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8862 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 > 10.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8863 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 3, s3 == 1, s2 == 1, c2 > 1.5, c4 > 10.0, c1 > 5.0, c3 <= 8.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8866 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 <= 2.5, c4 > 8.0, c1 <= 12.5, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8867 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 <= 2.5, c4 > 8.0, c1 <= 12.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8868 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 <= 2.5, c4 > 8.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8869 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 <= 2.5, c4 <= 8.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8874 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 > 2.5, c1 <= 12.5, c2 <= 2.0, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 4, c3 > 2.5, c1 <= 12.5, c2 <= 2.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8879 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 > 3.5, c3 > 11.5, c1 > 1.0, c2 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8883 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 > 3.5, c3 <= 11.5, c4 <= 10.0, c1 > 2.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8886 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 3, c5 > 3.5, c3 <= 11.5, c4 > 10.0, c1 > 4.5, c2 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8891 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 2, c2 > 1.0, c4 <= 12.0, c5 > 9.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8893 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 2, c2 > 1.0, c4 <= 12.0, c5 > 9.0, c3 > 4.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8895 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 2, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#8898 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 <= 8.0, c4 > 2.0, c5 > 1.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8899 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 <= 8.0, c4 > 2.0, c5 <= 1.0, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8900 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 <= 8.0, c4 > 2.0, c5 <= 1.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8901 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 <= 8.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8902 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 > 8.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8904 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 > 8.0, c3 > 2.5, c2 <= 10.0, c4 > 4.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8907 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 4, s2 == 1, c1 > 8.0, c3 > 2.5, c2 > 10.0, c4 > 3.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 4, c4 <= 11.0, c5 > 2.0, c1 > 2.0, c2 <= 1.5, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8910 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 4, c4 <= 11.0, c5 > 2.0, c1 > 2.0, c2 <= 1.5, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8915 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 4, c4 > 11.0, c1 > 1.5, c2 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8916 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 4, c4 > 11.0, c1 > 1.5, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8917 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 4, c4 > 11.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8920 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 > 8.5, c1 > 5.0, c2 <= 8.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8922 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 <= 8.5, c1 <= 11.0, c2 <= 10.5, c3 <= 3.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8925 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 <= 8.5, c1 <= 11.0, c2 > 10.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8926 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 <= 8.5, c1 <= 11.0, c2 > 10.5, c3 <= 7.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8928 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 <= 8.5, c1 > 11.0, c2 <= 8.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8929 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 <= 8.5, c1 > 11.0, c2 <= 8.5, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8930 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 3, c5 <= 8.5, c1 > 11.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8931 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 2, c5 <= 2.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8932 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 2, c5 <= 2.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8933 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 2, c5 > 2.5, c1 <= 12.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8934 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 2, c5 > 2.5, c1 <= 12.0, c2 <= 13, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8936 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 2, c5 > 2.5, c1 <= 12.0, c2 <= 13, c3 <= 12, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8937 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 2, c5 > 2.5, c1 > 12.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8938 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 2, c5 > 2.5, c1 > 12.0, c2 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8939 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 1, c2 <= 1.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8940 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 1, c2 <= 1.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8941 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 1, c2 > 1.5, c5 <= 10.5, c3 <= 4.5, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8942 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 1, c2 > 1.5, c5 <= 10.5, c3 <= 4.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8946 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 1, c2 > 1.5, c5 > 10.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8947 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 3, s2 == 1, c2 > 1.5, c5 > 10.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8953 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 4, c1 > 10.0, c3 > 2.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8955 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 4, c1 > 10.0, c3 > 2.0, c4 > 7.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8956 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 4, c1 > 10.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8958 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 3, c3 <= 4.5, c1 <= 8.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8962 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 3, c3 > 4.5, c1 > 7.0, c2 > 1.5, c4 > 2.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8963 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 3, c3 > 4.5, c1 > 7.0, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8967 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 <= 5.0, c2 > 4.5, c3 <= 4.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8968 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 <= 5.0, c2 > 4.5, c3 <= 4.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8971 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 > 5.0, c2 <= 11.0, c4 <= 3.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8972 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 > 5.0, c2 <= 11.0, c4 > 3.5, c3 <= 4.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8976 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 > 5.0, c2 > 11.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8977 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 2, c1 > 5.0, c2 > 11.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8978 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 1, c5 <= 2.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8979 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 1, c5 <= 2.5, c1 <= 8.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8980 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 1, c5 <= 2.5, c1 <= 8.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8983 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 2, s2 == 1, c5 > 2.5, c1 <= 12.5, c4 > 1.5, c2 <= 6.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8987 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 4, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8988 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 4, c1 <= 13, c3 > 11.5, c2 <= 10.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#8989 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 4, c1 <= 13, c3 > 11.5, c2 <= 10.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8991 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 4, c1 <= 13, c3 <= 11.5, c2 > 1.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#8993 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 4, c1 <= 13, c3 <= 11.5, c2 > 1.0, c4 <= 13, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8994 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 4, c1 <= 13, c3 <= 11.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#8995 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 <= 8.0, c2 <= 5.0, c5 > 7.0, c1 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8998 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 <= 8.0, c2 > 5.0, c1 <= 3.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#8999 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 <= 8.0, c2 > 5.0, c1 <= 3.0, c5 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9001 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 <= 8.0, c2 > 5.0, c1 > 3.0, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9002 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 > 8.0, c1 <= 12.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9003 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 > 8.0, c1 <= 12.5, c2 > 3.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9005 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 > 8.0, c1 > 12.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9006 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 > 2.0, c4 > 8.0, c1 > 12.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9007 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 <= 2.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9008 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 3, c3 <= 2.0, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9010 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 <= 8.0, c2 <= 8.5, c5 > 11.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9017 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 > 8.0, c1 <= 6.5, c2 > 6.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9019 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 > 8.0, c1 > 6.5, c5 <= 5.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 > 8.0, c1 > 6.5, c5 > 5.0, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9021 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 2, c4 > 8.0, c1 > 6.5, c5 > 5.0, c2 <= 12, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9023 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 <= 4.0, c1 > 7.0, c2 > 7.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9024 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 <= 4.0, c1 > 7.0, c2 > 7.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9025 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 <= 4.0, c1 > 7.0, c2 <= 7.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9026 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 <= 4.0, c1 > 7.0, c2 <= 7.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9031 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 > 4.0, c4 > 5.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9033 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 > 4.0, c4 <= 5.5, c2 <= 2.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9034 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 > 4.0, c4 <= 5.5, c2 > 2.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9036 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 2, s3 == 1, s2 == 1, c5 > 4.0, c4 <= 5.5, c2 > 2.0, c1 > 4.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9039 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c3 <= 11.5, c1 <= 3.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9044 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 4, c3 <= 11.5, c1 > 3.0, c2 > 2.5, c4 > 10.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9045 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 3, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9054 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 <= 9.5, c2 > 1.0, c3 > 3.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9056 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 <= 9.5, c2 > 1.0, c3 > 3.0, c4 <= 13, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9057 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 <= 9.5, c2 <= 1.0, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9058 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 <= 9.5, c2 <= 1.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9059 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 9.5, c5 <= 5.0, c2 <= 12.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9060 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 9.5, c5 <= 5.0, c2 <= 12.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9061 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 9.5, c5 <= 5.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9062 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 9.5, c5 > 5.0, c2 > 1.0, c3 > 3.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9064 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 9.5, c5 > 5.0, c2 > 1.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9065 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 2, c1 > 9.5, c5 > 5.0, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9067 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c2 <= 5.0, c3 <= 9.5, c4 <= 9.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9068 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c2 <= 5.0, c3 <= 9.5, c4 <= 9.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9070 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c2 > 5.0, c4 <= 12.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9071 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 4, s2 == 1, c2 > 5.0, c4 <= 12.0, c5 > 3.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9075 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 > 2.0, c1 <= 12.0, c3 <= 12.0, c5 > 7.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9077 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 > 2.0, c1 <= 12.0, c3 <= 12.0, c5 <= 7.0, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9080 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 > 2.0, c1 <= 12.0, c3 > 12.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9082 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 > 2.0, c1 > 12.0, c3 > 7.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9083 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 > 2.0, c1 > 12.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9084 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 <= 2.0, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9085 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 4, c2 <= 2.0, c1 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9086 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 <= 10.5, c2 <= 4.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9087 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 <= 10.5, c2 <= 4.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9088 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 <= 10.5, c2 > 4.0, c3 <= 3.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9089 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 <= 10.5, c2 > 4.0, c3 <= 3.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9090 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 <= 10.5, c2 > 4.0, c3 > 3.0, c4 <= 3.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9091 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 3, c1 <= 10.5, c2 > 4.0, c3 > 3.0, c4 <= 3.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9099 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 5.5, c5 <= 10.5, c3 > 5.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9100 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 5.5, c5 > 10.5, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9101 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 > 5.5, c5 > 10.5, c3 <= 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9104 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 <= 11.0, c2 <= 5.5, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9105 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 > 11.0, c2 > 2.5, c3 <= 7.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9106 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 > 11.0, c2 > 2.5, c3 <= 7.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9107 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 > 11.0, c2 > 2.5, c3 > 7.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9108 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 > 11.0, c2 > 2.5, c3 > 7.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9109 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 2, c1 > 11.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9110 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 <= 2.5, c2 <= 9.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9111 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 <= 2.5, c2 <= 9.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9113 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 <= 2.5, c2 > 9.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9114 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 > 2.5, c5 <= 3.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9115 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 > 2.5, c5 <= 3.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9116 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 > 2.0, c3 > 2.5, c5 > 3.0, c2 <= 9.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9120 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 <= 2.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9121 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 <= 2.0, c2 <= 8.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 3, s2 == 1, c1 <= 2.0, c2 <= 8.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9123 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 > 8.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#9124 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 > 8.5, c1 <= 13, c3 > 11.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9125 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 > 8.5, c1 <= 13, c3 > 11.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9127 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 > 8.5, c1 <= 13, c3 <= 11.5, c2 > 1.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9128 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 > 8.5, c1 <= 13, c3 <= 11.5, c2 <= 1.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9129 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 > 8.5, c1 <= 13, c3 <= 11.5, c2 <= 1.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9131 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.5, c1 > 1.0, c2 > 2.0, c3 > 7.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9135 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 4, c4 <= 8.5, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9136 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9140 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 3, c2 <= 13, c5 > 1.0, c3 <= 5.5, c4 <= 3.0, c1 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9145 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 7.0, c4 > 8.5, c5 <= 1.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9146 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 7.0, c4 > 8.5, c5 <= 1.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9148 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 7.0, c4 > 8.5, c5 > 1.5, c3 <= 11.5, c2 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9149 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 7.0, c4 > 8.5, c5 > 1.5, c3 <= 11.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9151 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 > 7.0, c4 <= 8.5, c2 > 6.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9154 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 7.0, c2 > 4.5, c4 > 1.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9155 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 7.0, c2 > 4.5, c4 > 1.0, c5 > 3.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 2, c1 <= 7.0, c2 > 4.5, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9159 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c1 > 1.5, c2 > 2.0, c3 > 2.0, c4 <= 12.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9161 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c1 > 1.5, c2 > 2.0, c3 > 2.0, c4 > 12.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9162 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c1 > 1.5, c2 > 2.0, c3 > 2.0, c4 > 12.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9163 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c1 > 1.5, c2 > 2.0, c3 <= 2.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9164 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 2, s2 == 1, c1 > 1.5, c2 > 2.0, c3 <= 2.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9166 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 <= 2.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9167 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 <= 2.5, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 > 2.5, c2 > 1.0, c3 <= 1.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9169 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 > 2.5, c2 > 1.0, c3 <= 1.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9171 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 > 2.5, c2 > 1.0, c3 > 1.5, c4 > 7.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9174 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 > 2.5, c2 <= 1.0, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9175 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 4, c1 > 2.5, c2 <= 1.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9176 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 > 13, c4 <= 7.5, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9177 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 > 13, c4 <= 7.5, c1 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9179 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 <= 13, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9180 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 <= 13, c1 <= 12, c3 <= 9.5, c4 <= 5.5, c5 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9181 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 <= 13, c1 <= 12, c3 <= 9.5, c4 <= 5.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9182 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 <= 13, c1 <= 12, c3 <= 9.5, c4 > 5.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9184 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 <= 13, c1 <= 12, c3 > 9.5, c5 <= 7.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9186 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 3, c2 <= 13, c1 <= 12, c3 > 9.5, c5 > 7.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9188 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 <= 1.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9189 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 <= 1.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9190 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 > 1.5, c1 <= 9.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9193 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 > 1.5, c1 <= 9.5, c2 > 5.5, c3 <= 1.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9194 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 > 1.5, c1 <= 9.5, c2 > 5.5, c3 <= 1.5, c4 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9195 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 > 1.5, c1 > 9.5, c2 <= 3.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9196 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 > 1.5, c1 > 9.5, c2 <= 3.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9197 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 2, c5 > 1.5, c1 > 9.5, c2 > 3.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9200 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c2 > 9.0, c1 > 4.0, c3 <= 9.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9201 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c2 > 9.0, c1 > 4.0, c3 <= 9.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9202 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c2 > 9.0, c1 > 4.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9203 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 3, s5 == 1, s3 == 1, s2 == 1, c2 > 9.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9204 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 > 11.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9205 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 > 11.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9207 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 <= 11.5, c1 <= 3.0, c3 <= 10.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9209 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 <= 11.5, c1 > 3.0, c2 <= 2.5, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9210 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 <= 11.5, c1 > 3.0, c2 <= 2.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9211 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 4, c4 <= 11.5, c1 > 3.0, c2 > 2.5, c3 <= 5.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9215 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 <= 12.5, c1 <= 8.0, c3 <= 2.5, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9216 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 <= 12.5, c1 <= 8.0, c3 <= 2.5, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9217 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 <= 12.5, c1 <= 8.0, c3 > 2.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9221 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 <= 12.5, c1 > 8.0, c3 > 11.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9222 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 <= 12.5, c1 > 8.0, c3 > 11.0, c4 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9223 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 > 12.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9224 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 > 1.0, c5 > 12.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9225 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 3, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9226 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 2, c3 > 1.0, c1 > 1.0, c2 <= 4.5, c4 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9227 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 2, c3 > 1.0, c1 > 1.0, c2 <= 4.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9231 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 2, c3 > 1.0, c1 <= 1.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9232 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 2, c3 > 1.0, c1 <= 1.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9233 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 2, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9238 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 1, c1 > 1.0, c2 <= 1.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9239 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 1, c1 > 1.0, c2 <= 1.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9240 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 4, s2 == 1, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9241 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 <= 2.5, c4 <= 8, c2 <= 6.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9242 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 <= 2.5, c4 <= 8, c2 <= 6.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9244 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 <= 2.5, c4 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9248 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 > 2.5, c4 > 10.0, c2 <= 8.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9249 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 > 2.5, c4 > 10.0, c2 <= 8.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9250 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 > 2.5, c4 > 10.0, c2 > 8.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9251 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 > 1.0, c1 > 2.5, c4 > 10.0, c2 > 8.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9252 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 4, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9253 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 3, c5 <= 10.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9255 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 3, c5 <= 10.0, c3 <= 13, c1 > 3.5, c2 <= 3.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 3, c5 <= 10.0, c3 <= 13, c1 > 3.5, c2 <= 3.0, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 3, c5 <= 10.0, c3 <= 13, c1 > 3.5, c2 > 3.0, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9260 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 3, c5 > 10.0, c4 <= 5.0, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9261 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 3, c5 > 10.0, c4 <= 5.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9262 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 <= 11.0, c4 <= 1.5, c2 <= 4.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9263 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 <= 11.0, c4 <= 1.5, c2 <= 4.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9265 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 <= 11.0, c4 > 1.5, c1 <= 12.5, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9267 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 <= 11.0, c4 > 1.5, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9268 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 > 11.0, c4 > 2.0, c2 > 5.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9269 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 > 11.0, c4 > 2.0, c2 > 5.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9270 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 > 11.0, c4 > 2.0, c2 <= 5.5, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9271 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 > 11.0, c4 > 2.0, c2 <= 5.5, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9272 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 2, c5 <= 12.0, c3 > 11.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9274 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9279 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 <= 12.0, c5 > 9.0, c3 <= 6.0, c4 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9280 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 <= 12.0, c5 > 9.0, c3 <= 6.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9281 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 <= 12.0, c5 > 9.0, c3 > 6.0, c4 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9283 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 > 12.0, c4 <= 3.5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9284 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 3, s2 == 1, c1 <= 13, c2 > 12.0, c4 <= 3.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9286 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 > 7.0, c1 <= 4.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9287 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 > 7.0, c1 <= 4.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9288 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 > 7.0, c1 > 4.5, c2 <= 3.5, c4 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9290 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 > 7.0, c1 > 4.5, c2 > 3.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9291 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 > 7.0, c1 > 4.5, c2 > 3.5, c5 > 4.0, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9293 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 <= 7.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9294 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 <= 7.0, c1 > 1.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9295 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 <= 7.0, c1 > 1.5, c2 > 4.0, c4 <= 10.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9297 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 4, c3 <= 7.0, c1 > 1.5, c2 > 4.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9298 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9299 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 > 13, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9300 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 > 13, c1 <= 9.5, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9301 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 > 13, c1 <= 9.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9303 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 <= 13, c1 <= 10.0, c2 <= 10.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9304 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 <= 13, c1 <= 10.0, c2 > 10.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9305 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 <= 13, c1 <= 10.0, c2 > 10.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9306 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 <= 13, c1 > 10.0, c2 <= 2.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9307 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 <= 13, c1 > 10.0, c2 <= 2.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9308 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 3, c5 > 1.5, c3 <= 13, c1 > 10.0, c2 > 2.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 2, c4 > 2.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 2, c4 > 2.0, c5 <= 13, c1 > 2.5, c2 > 11.5, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9313 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 2, c4 > 2.0, c5 <= 13, c1 > 2.5, c2 > 11.5, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9317 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 2, c4 <= 2.0, c1 <= 8.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 2, c4 <= 2.0, c1 <= 8.5, c2 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9320 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 <= 11.0, c5 > 1.0, c3 > 1.0, c4 > 2.0, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9321 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 <= 11.0, c5 > 1.0, c3 > 1.0, c4 <= 2.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9322 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 <= 11.0, c5 > 1.0, c3 > 1.0, c4 <= 2.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9323 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 <= 11.0, c5 > 1.0, c3 <= 1.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9324 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 <= 11.0, c5 > 1.0, c3 <= 1.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9325 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 <= 11.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9326 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 > 11.0, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9328 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 > 11.0, c5 > 2.0, c4 <= 7.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9329 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 2, s2 == 1, c2 > 11.0, c5 > 2.0, c4 <= 7.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9330 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 > 1.0, c4 <= 8.0, c1 <= 7.5, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9331 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 > 1.0, c4 <= 8.0, c1 <= 7.5, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9333 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 > 1.0, c4 <= 8.0, c1 > 7.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9334 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 > 1.0, c4 > 8.0, c1 <= 3.5, c3 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9335 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 > 1.0, c4 > 8.0, c1 <= 3.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9336 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 > 1.0, c4 > 8.0, c1 > 3.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9338 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 <= 1.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9339 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 <= 12.0, c5 <= 1.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9340 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 > 12.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9341 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 4, c2 > 12.0, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9342 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 > 11.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9343 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 > 11.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9345 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 <= 11.5, c1 > 2.5, c2 <= 11.0, c3 > 7.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9351 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 3, c5 <= 11.5, c1 > 2.5, c2 > 11.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9353 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 > 11.5, c5 > 6.5, c1 > 4.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9355 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 > 11.5, c5 > 6.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9356 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 <= 11.5, c1 > 2.0, c3 > 2.5, c4 > 11.5, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9357 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 <= 11.5, c1 > 2.0, c3 > 2.5, c4 > 11.5, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9360 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 <= 11.5, c1 > 2.0, c3 <= 2.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9361 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 <= 11.5, c1 > 2.0, c3 <= 2.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9362 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 <= 11.5, c1 <= 2.0, c3 <= 9.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9363 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 <= 11.5, c1 <= 2.0, c3 <= 9.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9364 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 2, c2 <= 11.5, c1 <= 2.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9365 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 <= 10.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9366 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 <= 10.5, c4 > 1.5, c2 <= 7.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9368 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 <= 10.5, c4 > 1.5, c2 <= 7.5, c5 > 4.5, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9372 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 > 10.5, c1 <= 10.5, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9373 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 4, s5 == 1, s2 == 1, c3 > 10.5, c1 <= 10.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9375 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 <= 10.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9377 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 <= 10.5, c1 <= 13, c4 <= 2.5, c2 <= 7.0, c5 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9379 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 <= 10.5, c1 <= 13, c4 > 2.5, c2 > 11.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9382 poker_hand = 7 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 <= 10.5, c1 <= 13, c4 > 2.5, c2 <= 11.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (7)");
+end
+
+rule "#9383 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 > 10.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9384 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 > 10.5, c1 > 3.5, c2 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9386 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 > 10.5, c1 > 3.5, c2 > 1.5, c4 <= 11.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9387 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 4, c3 > 10.5, c1 > 3.5, c2 > 1.5, c4 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9389 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 <= 8.0, c2 > 3.5, c4 <= 4.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9390 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 <= 8.0, c2 > 3.5, c4 <= 4.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9392 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 <= 8.0, c2 > 3.5, c4 > 4.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9395 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 > 8.0, c2 > 3.0, c4 > 7.0, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9396 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 > 8.0, c2 > 3.0, c4 <= 7.0, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9397 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 > 1.0, c3 > 8.0, c2 > 3.0, c4 <= 7.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9398 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 <= 1.0, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9399 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 3, c1 <= 1.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9402 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 2, c1 > 1.0, c3 > 1.0, c5 > 1.5, c2 <= 11.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9403 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 2, c1 > 1.0, c3 > 1.0, c5 > 1.5, c2 > 11.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9405 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 2, c1 > 1.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9406 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 2, c1 <= 1.0, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9408 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 <= 3.0, c2 <= 9.5, c1 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9409 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 <= 3.0, c2 <= 9.5, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9411 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 > 3.0, c2 <= 12.0, c5 <= 11.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9412 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 > 3.0, c2 <= 12.0, c5 <= 11.0, c1 > 2.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9415 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 > 3.0, c2 > 12.0, c1 <= 12.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 > 3.0, c2 > 12.0, c1 <= 12.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9417 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 4, s2 == 1, c4 > 3.0, c2 > 12.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 4, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9421 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 4, c1 <= 11.5, c3 > 4.0, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9424 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 4, c1 <= 11.5, c3 > 4.0, c4 <= 11, c2 <= 5.5, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9425 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 4, c1 <= 11.5, c3 > 4.0, c4 <= 11, c2 <= 5.5, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9426 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 <= 8.0, c5 <= 9.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 <= 8.0, c5 <= 9.0, c3 > 3.0, c2 <= 12.5, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9429 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 <= 8.0, c5 <= 9.0, c3 > 3.0, c2 > 12.5, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9430 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 <= 8.0, c5 <= 9.0, c3 > 3.0, c2 > 12.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9432 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 <= 8.0, c5 > 9.0, c4 <= 13, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9435 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 > 8.0, c2 > 2.0, c4 > 2.5, c3 <= 10.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9436 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 > 8.0, c2 > 2.0, c4 > 2.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9437 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 > 8.0, c2 > 2.0, c4 <= 2.5, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9439 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 3, c1 > 8.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9441 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 > 2.0, c1 <= 12.5, c2 <= 10.0, c4 <= 6.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9444 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 > 2.0, c1 <= 12.5, c2 > 10.0, c4 > 6.5, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9445 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 > 2.0, c1 <= 12.5, c2 > 10.0, c4 > 6.5, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9447 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 <= 2.0, c1 <= 3.5, c2 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9448 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 <= 2.0, c1 <= 3.5, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9450 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 2, c3 <= 2.0, c1 > 3.5, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9452 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 <= 4.5, c2 > 2.5, c1 > 3.0, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9453 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 <= 4.5, c2 > 2.5, c1 > 3.0, c3 <= 11, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9455 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 <= 4.5, c2 > 2.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9456 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 > 4.5, c2 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9459 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 > 4.5, c2 <= 11.5, c1 > 2.0, c3 > 4.5, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 > 4.5, c2 <= 11.5, c1 <= 2.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9461 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 3, s2 == 1, c4 > 4.5, c2 <= 11.5, c1 <= 2.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9466 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 > 2.0, c4 > 9.0, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9467 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 > 2.0, c4 > 9.0, c5 > 6.0, c1 > 7.0, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9468 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 > 2.0, c4 > 9.0, c5 > 6.0, c1 > 7.0, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9469 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 > 2.0, c4 > 9.0, c5 > 6.0, c1 <= 7.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9471 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 <= 2.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9472 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 <= 2.0, c1 > 6.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9473 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 4, c3 <= 2.0, c1 > 6.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9474 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 <= 6.5, c3 <= 4.0, c1 > 2.0, c2 <= 8.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9477 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 <= 6.5, c3 <= 4.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9480 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 <= 6.5, c3 > 4.0, c2 > 5.0, c4 > 2.0, c1 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9481 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 <= 6.5, c3 > 4.0, c2 > 5.0, c4 <= 2.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9482 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 <= 6.5, c3 > 4.0, c2 > 5.0, c4 <= 2.0, c1 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9484 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 > 6.5, c1 <= 10.5, c2 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9486 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 3, c5 > 6.5, c1 > 10.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9487 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 <= 4.0, c2 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9489 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 <= 4.0, c2 > 5.0, c4 <= 9.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9491 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 > 4.0, c2 <= 5.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9494 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 > 4.0, c2 > 5.0, c4 <= 2.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9495 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 > 4.0, c2 > 5.0, c4 <= 2.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9497 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 > 4.0, c2 > 5.0, c4 > 2.5, c3 > 5.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9498 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 2, c1 > 4.0, c2 > 5.0, c4 > 2.5, c3 <= 5.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9500 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 1, c1 > 13, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9501 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 1, c1 > 13, c2 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9503 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 1, c1 <= 13, c2 > 1.5, c3 > 13, c4 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9504 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 1, c1 <= 13, c2 > 1.5, c3 > 13, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9505 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 1, c1 <= 13, c2 > 1.5, c3 <= 13, c4 > 1.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9507 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 2, s2 == 1, c1 <= 13, c2 > 1.5, c3 <= 13, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9510 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 4, c5 <= 12.5, c1 <= 11.5, c2 <= 6.5, c3 <= 6.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9515 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 4, c5 <= 12.5, c1 <= 11.5, c2 > 6.5, c3 > 6.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9517 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 3, c2 <= 1.5, c1 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9518 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 3, c2 <= 1.5, c1 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9520 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 3, c2 > 1.5, c1 > 1.0, c4 <= 11.0, c5 <= 8.5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9523 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 3, c2 > 1.5, c1 > 1.0, c4 > 11.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9524 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 3, c2 > 1.5, c1 <= 1.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9525 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 3, c2 > 1.5, c1 <= 1.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9528 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 2, c2 > 4.0, c5 <= 2.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9529 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 2, c2 > 4.0, c5 > 2.5, c3 > 1.0, c1 <= 3.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9530 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 2, c2 > 4.0, c5 > 2.5, c3 > 1.0, c1 <= 3.0, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9532 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 2, c2 > 4.0, c5 > 2.5, c3 > 1.0, c1 > 3.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9533 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 2, c2 > 4.0, c5 > 2.5, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9534 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 <= 9.5, c4 <= 10.0, c1 <= 6.0, c2 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9535 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 <= 9.5, c4 <= 10.0, c1 <= 6.0, c2 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9536 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 <= 9.5, c4 <= 10.0, c1 > 6.0, c2 <= 4.5, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9537 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 <= 9.5, c4 <= 10.0, c1 > 6.0, c2 <= 4.5, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9541 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 <= 9.5, c4 > 10.0, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9542 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 > 9.5, c1 <= 9.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9543 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 3, s5 == 1, s2 == 1, c5 > 9.5, c1 <= 9.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9545 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 > 1.0, c2 <= 9.0, c5 <= 4.0, c4 <= 3.0, c3 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9546 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 > 1.0, c2 <= 9.0, c5 <= 4.0, c4 <= 3.0, c3 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9549 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 > 1.0, c2 <= 9.0, c5 > 4.0, c4 > 4.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9552 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 > 1.0, c2 > 9.0, c4 <= 2.5, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9553 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 4, c1 > 1.0, c2 > 9.0, c4 <= 2.5, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9555 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 <= 12.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9556 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 <= 12.0, c3 > 1.5, c5 <= 3.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9558 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 <= 12.0, c3 > 1.5, c5 > 3.0, c1 > 2.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9560 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 <= 12.0, c3 > 1.5, c5 > 3.0, c1 <= 2.0, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9562 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 > 12.0, c1 <= 5.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9563 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 > 12.0, c1 <= 5.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9565 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 3, c4 > 12.0, c1 > 5.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9566 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 2, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9567 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 2, c4 <= 13, c2 <= 9.5, c1 <= 2.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9568 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 2, c4 <= 13, c2 <= 9.5, c1 <= 2.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9569 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 2, c4 <= 13, c2 <= 9.5, c1 > 2.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9571 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 2, c4 <= 13, c2 <= 9.5, c1 > 2.5, c5 > 4.0, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9573 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 <= 8.0, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9574 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 <= 8.0, c3 > 2.5, c2 <= 11.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9576 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 <= 8.0, c3 > 2.5, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9577 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 > 8.0, c2 <= 5.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9578 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 > 8.0, c2 <= 5.0, c3 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9579 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 > 1.0, c4 > 8.0, c2 > 5.0, c3 <= 7.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9583 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 4, s2 == 1, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9584 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 4, c1 > 1.0, c3 <= 3.0, c2 <= 10.5, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9585 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 4, c1 > 1.0, c3 <= 3.0, c2 <= 10.5, c4 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9586 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 4, c1 > 1.0, c3 <= 3.0, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9587 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 4, c1 > 1.0, c3 > 3.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9588 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 4, c1 > 1.0, c3 > 3.0, c2 <= 13, c4 <= 1.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9589 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 4, c1 > 1.0, c3 > 3.0, c2 <= 13, c4 <= 1.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9592 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 4, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9593 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 3, c1 <= 3.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9594 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 3, c1 <= 3.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9596 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 3, c1 > 3.0, c5 <= 10.5, c4 > 3.0, c2 > 1.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9599 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 3, c1 > 3.0, c5 > 10.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9600 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 3, c1 > 3.0, c5 > 10.5, c2 <= 7.5, c3 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9601 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 3, c1 > 3.0, c5 > 10.5, c2 <= 7.5, c3 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9602 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 <= 1.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9603 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 <= 1.5, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9606 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 > 4.0, c4 <= 8.0, c3 <= 3.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9607 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 > 4.0, c4 <= 8.0, c3 <= 3.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9611 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 > 4.0, c4 > 8.0, c3 <= 3.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9612 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 > 4.0, c4 > 8.0, c3 > 3.5, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9613 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 2, c2 > 1.5, c1 > 4.0, c4 > 8.0, c3 > 3.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9615 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 1, c2 > 5.0, c1 <= 2.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9616 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 1, c2 > 5.0, c1 <= 2.5, c3 <= 8.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9617 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 1, c2 > 5.0, c1 <= 2.5, c3 <= 8.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9619 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 1, c2 > 5.0, c1 > 2.5, c3 <= 7.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9621 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 3, s2 == 1, c2 > 5.0, c1 > 2.5, c3 <= 7.0, c5 > 3.5, c4 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9625 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 4, c3 > 2.0, c1 <= 9.0, c2 > 3.5, c5 <= 5.5, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9630 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 4, c3 <= 2.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9633 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 3, c1 > 4.0, c2 <= 2.5, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9634 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 3, c1 > 4.0, c2 <= 2.5, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9636 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 3, c1 > 4.0, c2 > 2.5, c5 > 8.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9641 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 <= 9.5, c3 <= 5.0, c5 > 8.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9642 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 <= 9.5, c3 <= 5.0, c5 <= 8.5, c2 > 7.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9643 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 <= 9.5, c3 <= 5.0, c5 <= 8.5, c2 > 7.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9644 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 <= 9.5, c3 <= 5.0, c5 <= 8.5, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9648 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 <= 9.5, c3 > 5.0, c2 > 2.5, c4 > 2.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9649 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 > 9.5, c3 <= 3.5, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9650 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 2, c1 > 9.5, c3 <= 3.5, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9652 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 1, c2 > 1.0, c4 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9657 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 2, s2 == 1, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9660 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 4, c3 <= 4.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9662 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 4, c3 > 4.5, c1 > 1.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9666 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 3, c4 > 1.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9668 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 3, c4 > 1.0, c5 <= 13, c2 > 2.0, c1 > 1.0, c3 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9669 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 3, c4 > 1.0, c5 <= 13, c2 > 2.0, c1 <= 1.0, c3 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9670 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 3, c4 > 1.0, c5 <= 13, c2 > 2.0, c1 <= 1.0, c3 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9672 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 3, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9675 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 <= 11.0, c1 > 1.5, c4 <= 1.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9676 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 <= 11.0, c1 > 1.5, c4 > 1.5, c2 <= 12.0, c3 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9678 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 <= 11.0, c1 > 1.5, c4 > 1.5, c2 > 12.0, c3 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9679 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 <= 11.0, c1 > 1.5, c4 > 1.5, c2 > 12.0, c3 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9681 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 > 11.0, c4 <= 6.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9682 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 2, c5 > 11.0, c4 <= 6.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9684 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 > 2.0, c2 <= 7.5, c1 > 2.5, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9686 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 > 2.0, c2 <= 7.5, c1 <= 2.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9687 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 > 2.0, c2 > 7.5, c1 > 11.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9688 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 > 2.0, c2 > 7.5, c1 > 11.5, c4 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9689 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 > 2.0, c2 > 7.5, c1 <= 11.5, c4 <= 3.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9690 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 > 2.0, c2 > 7.5, c1 <= 11.5, c4 <= 3.5, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9693 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 2, s5 == 1, s2 == 1, c3 <= 2.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9694 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 4, c3 > 1.0, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9695 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 4, c3 > 1.0, c5 <= 13, c2 <= 1.5, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9696 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 4, c3 > 1.0, c5 <= 13, c2 <= 1.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9697 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 4, c3 > 1.0, c5 <= 13, c2 > 1.5, c1 <= 3.0, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9698 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 4, c3 > 1.0, c5 <= 13, c2 > 1.5, c1 <= 3.0, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9700 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 4, c3 > 1.0, c5 <= 13, c2 > 1.5, c1 > 3.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9701 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 4, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9702 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 > 2.0, c5 <= 2.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9706 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 > 2.0, c5 > 2.5, c1 > 1.5, c2 > 2.0, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9708 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 > 2.0, c5 > 2.5, c1 > 1.5, c2 <= 2.0, c3 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9709 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 > 2.0, c5 > 2.5, c1 > 1.5, c2 <= 2.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9710 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 <= 2.0, c1 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9711 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 <= 2.0, c1 <= 11, c2 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9712 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 3, c4 <= 2.0, c1 <= 11, c2 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9715 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 2, c1 <= 10.0, c3 > 2.5, c2 <= 2.5, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9716 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 2, c1 <= 10.0, c3 > 2.5, c2 > 2.5, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9717 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 2, c1 <= 10.0, c3 > 2.5, c2 > 2.5, c4 > 1.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9721 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 1, c4 > 1.0, c2 <= 1.5, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9722 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 1, c4 > 1.0, c2 <= 1.5, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9723 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 1, c4 > 1.0, c2 > 1.5, c5 <= 6.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9725 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 1, c4 > 1.0, c2 > 1.5, c5 <= 6.0, c1 <= 13, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9728 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 1, c4 > 1.0, c2 > 1.5, c5 > 6.0, c1 > 3.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9729 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 4, s2 == 1, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9730 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 4, c2 > 1.0, c3 > 11.5, c5 <= 9.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9731 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 4, c2 > 1.0, c3 > 11.5, c5 <= 9.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9737 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 4, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9738 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 3, c4 > 2.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9739 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 3, c4 > 2.0, c1 <= 13, c2 <= 12.0, c3 > 1.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9741 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 3, c4 > 2.0, c1 <= 13, c2 <= 12.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9742 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 3, c4 > 2.0, c1 <= 13, c2 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9743 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 3, c4 <= 2.0, c1 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9744 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 3, c4 <= 2.0, c1 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9746 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 2, c2 <= 1.5, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9750 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 2, c2 > 1.5, c1 > 1.5, c3 > 1.0, c4 > 4.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9756 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 > 5.0, c3 > 1.0, c5 <= 11.0, c2 > 4.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9758 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 > 5.0, c3 > 1.0, c5 > 11.0, c2 <= 5.5, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9760 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 > 5.0, c3 > 1.0, c5 > 11.0, c2 > 5.5, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9761 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 > 5.0, c3 > 1.0, c5 > 11.0, c2 > 5.5, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9762 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 > 5.0, c3 <= 1.0, c2 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9763 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 3, s2 == 1, c1 > 5.0, c3 <= 1.0, c2 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9764 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9765 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 <= 13, c4 <= 10.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9766 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 <= 13, c4 <= 10.0, c2 <= 13, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9767 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 <= 13, c4 <= 10.0, c2 <= 13, c3 <= 13, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9771 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 <= 13, c4 > 10.0, c3 > 2.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9772 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 4, c1 <= 13, c4 > 10.0, c3 <= 2.5, c2 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9775 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 3, c1 > 1.5, c2 <= 3.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9776 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 3, c1 > 1.5, c2 <= 3.0, c3 <= 9.5, c4 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9777 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 3, c1 > 1.5, c2 <= 3.0, c3 <= 9.5, c4 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9778 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 3, c1 > 1.5, c2 > 3.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9779 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 3, c1 > 1.5, c2 > 3.0, c3 <= 13, c4 <= 4.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9780 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 3, c1 > 1.5, c2 > 3.0, c3 <= 13, c4 <= 4.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9783 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 <= 3.5, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9786 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 > 3.5, c1 <= 3.5, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9789 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 > 3.5, c1 > 3.5, c2 > 7.0, c3 > 9.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9790 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 > 3.5, c1 > 3.5, c2 > 7.0, c3 > 9.5, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9791 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 > 3.5, c1 > 3.5, c2 <= 7.0, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9793 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 2, c4 > 3.5, c1 > 3.5, c2 <= 7.0, c5 > 3.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9795 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 1, c3 > 1.0, c1 > 2.5, c2 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#9796 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 1, c3 > 1.0, c1 > 2.5, c2 <= 12, c4 <= 4.0, c5 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9797 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 1, c3 > 1.0, c1 > 2.5, c2 <= 12, c4 <= 4.0, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9800 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 2, s2 == 1, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9804 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 4, c2 > 3.0, c1 > 1.5, c3 <= 6.5, c4 <= 10.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9807 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 4, c2 > 3.0, c1 > 1.5, c3 > 6.5, c5 > 5.5, c4 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9808 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 4, c2 > 3.0, c1 > 1.5, c3 > 6.5, c5 <= 5.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9811 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 > 7.0, c1 <= 12.5, c5 > 6.0, c3 <= 6.5, c4 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9812 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 > 7.0, c1 <= 12.5, c5 > 6.0, c3 <= 6.5, c4 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9813 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 > 7.0, c1 <= 12.5, c5 > 6.0, c3 > 6.5, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9815 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 > 7.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9816 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 <= 7.0, c3 <= 3.5, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9818 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 <= 7.0, c3 > 3.5, c1 <= 8.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9820 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 3, c2 <= 7.0, c3 > 3.5, c1 > 8.0, c4 <= 9.0, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9823 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 > 5.5, c1 <= 9.0, c4 > 7.0, c3 <= 5.5, c5 <= 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9824 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 > 5.5, c1 <= 9.0, c4 > 7.0, c3 <= 5.5, c5 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9826 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 > 5.5, c1 <= 9.0, c4 <= 7.0, c3 <= 10.5, c5 <= 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9827 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 > 5.5, c1 <= 9.0, c4 <= 7.0, c3 <= 10.5, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9828 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 > 5.5, c1 <= 9.0, c4 <= 7.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9829 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 > 5.5, c1 > 9.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9830 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 > 5.5, c1 > 9.0, c3 <= 6.5, c4 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9831 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 > 5.5, c1 > 9.0, c3 <= 6.5, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9832 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 <= 5.5, c1 <= 6.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9833 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 <= 5.5, c1 <= 6.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9834 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 <= 5.5, c1 > 6.0, c3 > 5.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9835 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 2, c2 <= 5.5, c1 > 6.0, c3 > 5.0, c4 > 2.0, c5 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9841 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 2, s3 == 1, s5 == 1, s2 == 1, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9843 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c1 <= 4.0, c3 <= 10.0, c4 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9844 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c1 <= 4.0, c3 > 10.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9845 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c1 <= 4.0, c3 > 10.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9849 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 > 1.0, c1 > 4.0, c3 > 1.5, c4 > 9.5, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9851 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 4, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9852 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 > 2.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9853 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 > 2.0, c2 <= 13, c4 <= 3.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9857 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 > 2.0, c2 <= 13, c4 > 3.0, c1 > 11.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9858 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 > 2.0, c2 <= 13, c4 > 3.0, c1 > 11.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9859 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 <= 2.0, c1 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9860 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 <= 2.0, c1 <= 12, c2 > 4.0, c3 > 3.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9862 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 <= 2.0, c1 <= 12, c2 > 4.0, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9863 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 3, c5 <= 2.0, c1 <= 12, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9864 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9866 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 <= 10.5, c2 <= 12.5, c1 <= 9.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9867 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 <= 10.5, c2 <= 12.5, c1 > 9.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9870 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 > 10.5, c1 <= 10.5, c2 > 5.5, c3 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9872 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 > 10.5, c1 <= 10.5, c2 <= 5.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9873 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 > 10.5, c1 <= 10.5, c2 <= 5.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9874 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 > 10.5, c1 > 10.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9875 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 2, c4 <= 13, c5 > 10.5, c1 > 10.5, c2 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9876 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 <= 3.0, c1 <= 8.0, c2 <= 7, c3 > 11, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9878 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 <= 3.0, c1 <= 8.0, c2 > 7, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9879 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 <= 3.0, c1 > 8.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9881 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 > 3.0, c1 > 2.0, c3 <= 2.5, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9882 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 4, s5 == 1, c4 > 3.0, c1 > 2.0, c3 <= 2.5, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9889 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 <= 4.0, c3 <= 5.5, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9891 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 <= 4.0, c3 <= 5.5, c1 <= 13, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9892 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 > 4.0, c2 <= 3.5, c1 <= 3.5, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9893 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 > 4.0, c2 <= 3.5, c1 <= 3.5, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9896 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 > 4.0, c2 > 3.5, c3 > 6.0, c1 <= 8.0, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9899 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 4, c5 > 4.0, c2 > 3.5, c3 > 6.0, c1 > 8.0, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9900 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 3, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9901 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 3, c2 > 2.5, c4 <= 10.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9906 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 <= 4.5, c1 <= 6.0, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9909 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 <= 4.5, c1 > 6.0, c3 > 1.5, c4 > 7.0, c5 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9910 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 <= 4.5, c1 > 6.0, c3 > 1.5, c4 > 7.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9911 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 <= 4.5, c1 > 6.0, c3 > 1.5, c4 <= 7.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9914 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 > 4.5, c5 <= 12.5, c4 <= 5.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#9917 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 > 4.5, c5 <= 12.5, c4 > 5.0, c1 > 12.0, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9918 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 > 4.5, c5 <= 12.5, c4 > 5.0, c1 > 12.0, c3 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9919 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 2, c2 > 4.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#9920 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 <= 9.0, c3 <= 5.0, c1 > 8.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9921 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 <= 9.0, c3 <= 5.0, c1 > 8.5, c5 > 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9923 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 <= 9.0, c3 <= 5.0, c1 <= 8.5, c5 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9926 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 <= 9.0, c3 > 5.0, c1 <= 7.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9929 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 > 9.0, c3 > 3.5, c5 > 3.0, c1 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9930 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 > 9.0, c3 <= 3.5, c1 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9931 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 <= 12.5, c2 > 9.0, c3 <= 3.5, c1 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9932 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 3, s5 == 1, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#9933 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 4, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9934 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 4, c1 <= 13, c3 <= 11.0, c2 <= 2.5, c4 <= 10, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9935 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 4, c1 <= 13, c3 <= 11.0, c2 <= 2.5, c4 <= 10, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9936 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 4, c1 <= 13, c3 <= 11.0, c2 <= 2.5, c4 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9941 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 4, c1 <= 13, c3 > 11.0, c2 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9942 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9944 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 > 1.0, c3 <= 11.0, c2 <= 6.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9945 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 > 1.0, c3 <= 11.0, c2 > 6.5, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9947 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 > 1.0, c3 > 11.0, c5 > 7.0, c2 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9949 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 > 1.0, c3 > 11.0, c5 <= 7.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9951 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 <= 1.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9952 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 3, c1 <= 13, c4 <= 1.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9953 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 2, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9954 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 2, c1 > 1.5, c2 <= 12.0, c3 <= 9.5, c4 <= 5.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9955 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 2, c1 > 1.5, c2 <= 12.0, c3 <= 9.5, c4 <= 5.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9957 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 2, c1 > 1.5, c2 <= 12.0, c3 <= 9.5, c4 > 5.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9958 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 2, c1 > 1.5, c2 <= 12.0, c3 > 9.5, c4 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9959 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 2, c1 > 1.5, c2 <= 12.0, c3 > 9.5, c4 > 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9961 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 > 11.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9962 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 > 11.5, c1 > 3.5, c2 <= 12.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9963 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 > 11.5, c1 > 3.5, c2 <= 12.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9964 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 > 11.5, c1 > 3.5, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9965 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 <= 11.5, c2 <= 10.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9967 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 <= 11.5, c2 <= 10.0, c3 > 1.5, c1 <= 11.5, c5 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9969 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 2, s5 == 1, c4 <= 11.5, c2 > 10.0, c1 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9973 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 4, c1 <= 3.0, c3 <= 6.0, c2 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9974 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 4, c1 <= 3.0, c3 <= 6.0, c2 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9981 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 3, c3 <= 8.0, c1 > 2.0, c2 <= 9.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9982 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 3, c3 <= 8.0, c1 > 2.0, c2 <= 9.5, c4 <= 11.5, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9985 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 3, c3 <= 8.0, c1 > 2.0, c2 > 9.5, c4 <= 10.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9987 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 3, c3 <= 8.0, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9991 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 2, c2 > 2.0, c1 > 3.5, c3 > 2.0, c5 > 2.0, c4 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9993 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 2, c2 > 2.0, c1 > 3.5, c3 <= 2.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#9995 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 2, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#9996 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 1, c3 <= 3.0, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10001 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 1, c3 > 3.0, c2 <= 12, c5 <= 10.0, c4 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10002 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 1, c3 > 3.0, c2 <= 12, c5 > 10.0, c1 <= 10.0, c4 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10003 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 1, c3 > 3.0, c2 <= 12, c5 > 10.0, c1 <= 10.0, c4 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10004 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 4, s3 == 1, s5 == 1, c3 > 3.0, c2 <= 12, c5 > 10.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10006 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 <= 11.0, c1 <= 12.5, c2 <= 9.5, c3 <= 10.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10008 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 <= 11.0, c1 <= 12.5, c2 > 9.5, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10013 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 > 11.0, c1 <= 6.5, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10014 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 4, c4 > 11.0, c1 <= 6.5, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10015 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 3, c2 > 1.0, c1 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10017 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 3, c2 > 1.0, c1 <= 13, c3 <= 9.0, c4 > 1.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10019 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 3, c2 > 1.0, c1 <= 13, c3 > 9.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10020 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 3, c2 > 1.0, c1 <= 13, c3 > 9.0, c4 > 2.5, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10022 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 3, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10023 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 <= 5.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10024 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 <= 5.0, c3 > 1.5, c2 <= 6.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10025 poker_hand = 6 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 <= 5.0, c3 > 1.5, c2 <= 6.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (6)");
+end
+
+rule "#10026 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 <= 5.0, c3 > 1.5, c2 > 6.0, c5 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10028 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 > 5.0, c5 <= 10.0, c2 > 8.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10029 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 > 5.0, c5 <= 10.0, c2 > 8.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10033 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 <= 11.0, c4 > 5.0, c5 > 10.0, c2 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10034 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 > 11.0, c2 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10035 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 2, c1 > 11.0, c2 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10036 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 1, c4 <= 11.0, c5 > 2.0, c1 <= 3.5, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10037 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 1, c4 <= 11.0, c5 > 2.0, c1 <= 3.5, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#10040 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 1, c4 <= 11.0, c5 > 2.0, c1 > 3.5, c2 > 11.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10041 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 4, s5 == 1, c4 <= 11.0, c5 > 2.0, c1 > 3.5, c2 > 11.0, c3 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10046 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 <= 12.5, c5 <= 10.0, c1 > 4.0, c2 <= 8.0, c4 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10048 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 <= 12.5, c5 > 10.0, c1 > 3.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10049 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 <= 12.5, c5 > 10.0, c1 > 3.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10050 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 <= 12.5, c5 > 10.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10051 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 > 12.5, c1 <= 10.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10053 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 4, c3 > 12.5, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10054 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 3, c4 > 1.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10055 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 3, c4 > 1.0, c2 <= 13, c1 <= 3.5, c3 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10056 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 3, c4 > 1.0, c2 <= 13, c1 <= 3.5, c3 > 2.5, c5 > 12, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10060 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 3, c4 > 1.0, c2 <= 13, c1 > 3.5, c3 > 3.0, c5 > 12.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10061 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 3, c4 <= 1.0, c1 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10063 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 > 11.5, c2 <= 9.5, c1 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10064 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 > 11.5, c2 <= 9.5, c1 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10066 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 <= 11.5, c1 > 13, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10067 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 <= 11.5, c1 > 13, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10068 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 <= 11.5, c1 <= 13, c3 <= 1.5, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10069 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 2, c5 <= 11.5, c1 <= 13, c3 <= 1.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10074 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 <= 9.0, c2 > 2.0, c4 > 7.0, c3 <= 4.5, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10075 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 <= 9.0, c2 > 2.0, c4 > 7.0, c3 <= 4.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10078 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 <= 9.0, c2 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10079 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 > 9.0, c3 <= 6.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10081 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 > 9.0, c3 > 6.0, c2 <= 3.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10082 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 3, s5 == 1, c1 > 9.0, c3 > 6.0, c2 <= 3.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10085 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 4, c1 > 2.0, c5 > 2.0, c2 <= 5.0, c4 > 2.5, c3 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10086 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 4, c1 > 2.0, c5 > 2.0, c2 <= 5.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10087 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 4, c1 > 2.0, c5 > 2.0, c2 > 5.0, c3 <= 3.0, c4 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10088 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 4, c1 > 2.0, c5 > 2.0, c2 > 5.0, c3 <= 3.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10092 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 4, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10093 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 3, c5 <= 4.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10094 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 3, c5 <= 4.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10095 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 3, c5 > 4.0, c4 <= 9.5, c3 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10097 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 3, c5 > 4.0, c4 <= 9.5, c3 > 3.0, c1 <= 7.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10100 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 3, c5 > 4.0, c4 > 9.5, c1 <= 8.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#10101 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 3, c5 > 4.0, c4 > 9.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10106 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 2, c1 > 2.0, c3 > 12.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10108 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 2, c1 <= 2.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10109 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 2, c1 <= 2.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#10111 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 1, c5 <= 9.0, c2 > 1.5, c3 <= 9.0, c4 > 2.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10113 poker_hand = 3 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 1, c5 <= 9.0, c2 > 1.5, c3 <= 9.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (3)");
+end
+
+rule "#10115 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 1, c5 > 9.0, c4 <= 6.0, c1 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10116 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 2, s5 == 1, c5 > 9.0, c4 <= 6.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10118 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 > 2.0, c4 <= 9.5, c2 > 1.0, c3 <= 3.0, c5 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10119 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 > 2.0, c4 <= 9.5, c2 > 1.0, c3 <= 3.0, c5 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10122 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 > 2.0, c4 <= 9.5, c2 <= 1.0, c3 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10123 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 > 2.0, c4 <= 9.5, c2 <= 1.0, c3 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10124 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 > 2.0, c4 > 9.5, c3 <= 6.0, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10125 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 > 2.0, c4 > 9.5, c3 <= 6.0, c2 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10127 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 4, c1 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10129 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 3, c2 <= 11.5, c1 > 1.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10130 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 3, c2 <= 11.5, c1 > 1.0, c3 <= 13, c4 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10133 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 3, c2 <= 11.5, c1 <= 1.0, c3 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10134 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 3, c2 <= 11.5, c1 <= 1.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10135 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 2, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10136 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 2, c3 > 1.5, c1 > 1.0, c2 <= 1.5, c4 > 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10137 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 2, c3 > 1.5, c1 > 1.0, c2 <= 1.5, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10138 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 2, c3 > 1.5, c1 > 1.0, c2 > 1.5, c4 > 11, c5 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10139 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 2, c3 > 1.5, c1 > 1.0, c2 > 1.5, c4 > 11, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10140 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 2, c3 > 1.5, c1 > 1.0, c2 > 1.5, c4 <= 11, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10142 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 2, c3 > 1.5, c1 <= 1.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10143 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 2, c3 > 1.5, c1 <= 1.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10149 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 1, c4 <= 7.0, c2 <= 4.0, c1 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10150 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 3, s3 == 1, s5 == 1, c4 <= 7.0, c2 <= 4.0, c1 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10152 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 4, c2 <= 4.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10153 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 4, c2 <= 4.5, c1 <= 11.5, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10154 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 4, c2 <= 4.5, c1 <= 11.5, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10155 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 4, c2 > 4.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10157 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 4, c2 > 4.5, c5 <= 13, c1 > 1.5, c3 > 13, c4 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10158 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 4, c2 > 4.5, c5 <= 13, c1 > 1.5, c3 > 13, c4 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#10159 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 4, c2 > 4.5, c5 <= 13, c1 > 1.5, c3 <= 13, c4 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10161 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 <= 10.5, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10162 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 <= 10.5, c1 <= 11.5, c2 <= 12.0, c4 <= 3.0, c5 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10168 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 > 10.5, c2 > 7.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10170 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 3, c3 > 10.5, c2 <= 7.0, c1 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10172 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 <= 6.5, c1 > 3.0, c2 <= 3.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10173 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 <= 6.5, c1 > 3.0, c2 <= 3.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10176 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 <= 6.5, c1 > 3.0, c2 > 3.0, c3 <= 6.0, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10180 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 > 6.5, c3 > 2.5, c4 <= 3.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10184 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 2, c5 > 6.5, c3 > 2.5, c4 > 3.5, c1 > 9.5, c2 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10187 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 <= 9.5, c2 > 6.0, c5 <= 7.0, c1 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10188 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 <= 9.5, c2 > 6.0, c5 <= 7.0, c1 <= 6.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10190 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 > 9.5, c1 > 5.5, c4 <= 8.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10191 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 > 9.5, c1 > 5.5, c4 <= 8.0, c2 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10193 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 > 9.5, c1 <= 5.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10194 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 4, s3 == 1, c3 > 9.5, c1 <= 5.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10195 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10197 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 > 7.0, c2 > 1.0, c4 <= 12.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10201 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 <= 7.0, c2 > 7.0, c4 > 8.5, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10202 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 <= 7.0, c2 > 7.0, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10203 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 <= 7.0, c2 <= 7.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10204 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 <= 7.0, c2 <= 7.0, c4 > 4.5, c5 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10205 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 4, c3 > 1.5, c1 <= 7.0, c2 <= 7.0, c4 > 4.5, c5 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10207 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 <= 5.0, c3 > 3.5, c4 <= 12.5, c5 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10209 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 <= 5.0, c3 > 3.5, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10210 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 > 5.0, c3 > 7.0, c4 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10213 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 > 5.0, c3 <= 7.0, c4 <= 10.0, c5 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10215 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 > 2.0, c1 > 5.0, c3 <= 7.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10216 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 <= 2.0, c1 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10217 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 <= 2.0, c1 <= 7.0, c3 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10218 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 3, c2 <= 2.0, c1 <= 7.0, c3 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10219 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 2, c1 <= 12.5, c5 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10221 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 2, c1 <= 12.5, c5 > 2.0, c4 <= 12.0, c2 > 1.0, c3 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10224 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 2, c1 > 12.5, c2 <= 6.0, c3 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10225 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 2, c1 > 12.5, c2 <= 6.0, c3 <= 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10226 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 2, c1 > 12.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10228 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 <= 8.0, c2 <= 11.5, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10230 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 <= 8.0, c2 <= 11.5, c3 <= 13, c1 > 1.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10231 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 <= 8.0, c2 <= 11.5, c3 <= 13, c1 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10233 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 > 8.0, c2 > 2.0, c4 <= 10.5, c1 <= 9.0, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10234 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 > 8.0, c2 > 2.0, c4 <= 10.5, c1 > 9.0, c3 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10236 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 > 8.0, c2 > 2.0, c4 > 10.5, c1 <= 9.0, c3 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10237 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 3, s3 == 1, c5 > 8.0, c2 > 2.0, c4 > 10.5, c1 <= 9.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10240 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 <= 4.0, c2 <= 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10242 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 <= 4.0, c2 > 7.5, c1 <= 5.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10243 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 <= 4.0, c2 > 7.5, c1 > 5.5, c4 <= 10.0, c5 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10244 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 <= 4.0, c2 > 7.5, c1 > 5.5, c4 <= 10.0, c5 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10245 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 <= 4.0, c2 > 7.5, c1 > 5.5, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10248 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 > 4.0, c1 <= 9.5, c2 > 11.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10250 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 > 4.0, c1 > 9.5, c2 > 4.0, c4 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10251 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 4, c3 > 4.0, c1 > 9.5, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10255 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 3, c4 <= 12.0, c1 > 2.0, c5 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10256 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 3, c4 <= 12.0, c1 <= 2.0, c2 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10257 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 3, c4 <= 12.0, c1 <= 2.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10258 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 3, c4 > 12.0, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10264 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 <= 11.0, c3 > 12.0, c1 <= 12.5, c4 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10265 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 <= 11.0, c3 > 12.0, c1 <= 12.5, c4 > 6.0, c5 <= 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10266 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 <= 11.0, c3 > 12.0, c1 <= 12.5, c4 > 6.0, c5 > 9.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10267 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 2, c2 <= 11.0, c3 > 12.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10270 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 <= 4.5, c1 <= 10.0, c3 > 7.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10271 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 <= 4.5, c1 <= 10.0, c3 <= 7.5, c5 > 6, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10273 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 <= 4.5, c1 > 10.0, c3 > 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10274 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 <= 4.5, c1 > 10.0, c3 <= 5.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10277 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 > 4.5, c1 > 1.5, c3 <= 2.0, c5 <= 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10278 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 <= 10.0, c2 > 4.5, c1 > 1.5, c3 <= 2.0, c5 > 1, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10280 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 > 10.0, c1 > 5.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10282 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 > 10.0, c1 <= 5.0, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10283 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 2, s3 == 1, c4 > 10.0, c1 <= 5.0, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10284 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 4, c5 <= 2.5, c1 <= 8.0, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10285 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 4, c5 <= 2.5, c1 <= 8.0, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10287 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 4, c5 > 2.5, c4 > 2.0, c1 <= 1.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#10288 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 4, c5 > 2.5, c4 > 2.0, c1 > 1.5, c2 <= 2.5, c3 <= 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10289 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 4, c5 > 2.5, c4 > 2.0, c1 > 1.5, c2 <= 2.5, c3 > 10, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10297 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 <= 11.0, c3 > 2.0, c5 > 6.0, c1 <= 5.0, c4 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10300 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 <= 11.0, c3 <= 2.0, c1 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10301 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 3, c2 <= 11.0, c3 <= 2.0, c1 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10306 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 2, c1 > 5.0, c2 <= 11.0, c3 > 2.5, c4 > 8.5, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10310 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 2, c1 > 5.0, c2 > 11.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10311 poker_hand = 4 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 2, c1 > 5.0, c2 > 11.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (4)");
+end
+
+rule "#10312 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 <= 3.0, c1 <= 8.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10313 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 <= 3.0, c1 <= 8.0, c3 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10314 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 <= 3.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10318 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 > 3.0, c3 > 3.0, c4 <= 6.5, c1 <= 7.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10320 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 2, s5 == 1, s3 == 1, c2 > 3.0, c3 > 3.0, c4 > 6.5, c1 > 7.5, c5 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10322 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 <= 3.0, c1 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10323 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 <= 3.0, c1 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10327 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 > 3.0, c4 <= 12.5, c5 > 5.5, c1 > 9.5, c3 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10328 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 > 3.0, c4 <= 12.5, c5 <= 5.5, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10330 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 > 3.0, c4 <= 12.5, c5 <= 5.5, c1 <= 8.0, c3 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10331 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 4, c2 > 3.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10332 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 <= 12.5, c2 <= 3.0, c3 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10333 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 <= 12.5, c2 <= 3.0, c3 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10336 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 <= 12.5, c2 > 3.0, c4 <= 12.0, c3 > 10.5, c5 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10338 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 <= 12.5, c2 > 3.0, c4 > 12.0, c3 > 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10340 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 > 12.5, c2 > 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10341 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 3, c1 > 12.5, c2 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10342 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 <= 12.0, c4 <= 5.0, c5 <= 5.0, c1 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10343 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 <= 12.0, c4 <= 5.0, c5 <= 5.0, c1 > 8.0, c2 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10344 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 <= 12.0, c4 <= 5.0, c5 <= 5.0, c1 > 8.0, c2 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10346 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 <= 12.0, c4 > 5.0, c1 <= 12.5, c2 <= 3.0, c5 <= 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10347 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 <= 12.0, c4 > 5.0, c1 <= 12.5, c2 <= 3.0, c5 > 2.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10349 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 <= 12.0, c4 > 5.0, c1 <= 12.5, c2 > 3.0, c5 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10350 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 <= 12.0, c4 > 5.0, c1 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10352 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 2, c3 > 12.0, c1 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10353 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 1, c2 > 2.0, c1 <= 1.5, c3 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10354 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 1, c2 > 2.0, c1 <= 1.5, c3 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10355 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 1, c2 > 2.0, c1 > 1.5, c3 > 4.0, c4 <= 6.5, c5 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10356 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 1, c2 > 2.0, c1 > 1.5, c3 > 4.0, c4 <= 6.5, c5 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10360 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 1, c2 <= 2.0, c1 > 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10361 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 4, s3 == 1, c2 <= 2.0, c1 <= 3, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10363 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 > 7.0, c1 <= 10.0, c3 > 3.5, c2 <= 6.0, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10364 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 > 7.0, c1 <= 10.0, c3 > 3.5, c2 <= 6.0, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10367 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 > 7.0, c1 > 10.0, c2 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10369 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 <= 7.0, c3 > 1.0, c1 <= 10.5, c2 <= 10.0, c5 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10370 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 <= 7.0, c3 > 1.0, c1 <= 10.5, c2 <= 10.0, c5 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10371 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 <= 7.0, c3 > 1.0, c1 <= 10.5, c2 > 10.0, c5 <= 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10372 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 <= 7.0, c3 > 1.0, c1 <= 10.5, c2 > 10.0, c5 > 11.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10373 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 <= 7.0, c3 > 1.0, c1 > 10.5, c2 <= 11.0, c5 > 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10374 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 <= 7.0, c3 > 1.0, c1 > 10.5, c2 <= 11.0, c5 <= 7.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10376 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 4, c4 <= 7.0, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10379 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 > 8.5, c2 > 5.0, c5 > 2.5, c1 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10380 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 > 8.5, c2 > 5.0, c5 <= 2.5, c1 <= 3.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10382 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 <= 8.0, c2 <= 10.0, c5 <= 8.0, c4 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10383 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 <= 8.0, c2 <= 10.0, c5 <= 8.0, c4 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10384 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 <= 8.0, c2 <= 10.0, c5 > 8.0, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10387 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 > 8.0, c2 > 2.0, c5 <= 6.0, c4 <= 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10388 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 > 8.0, c2 > 2.0, c5 <= 6.0, c4 > 4, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10390 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 > 8.0, c2 <= 2.0, c4 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10391 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 3, c3 <= 8.5, c1 > 8.0, c2 <= 2.0, c4 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10392 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 <= 6.0, c1 <= 5.0, c3 > 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10393 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 <= 6.0, c1 <= 5.0, c3 <= 8.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10395 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 <= 6.0, c1 > 5.0, c3 <= 11.5, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10396 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 <= 6.0, c1 > 5.0, c3 <= 11.5, c4 <= 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10397 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 > 6.0, c1 > 11.5, c3 <= 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10398 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 > 6.0, c1 > 11.5, c3 > 8, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10399 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 > 6.0, c1 <= 11.5, c3 <= 7.5, c4 <= 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10401 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 > 6.0, c1 <= 11.5, c3 > 7.5, c5 <= 3.0, c4 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10402 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 2, c2 > 6.0, c1 <= 11.5, c3 > 7.5, c5 <= 3.0, c4 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10405 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 > 2.0, c1 > 4.0, c2 <= 5.5, c3 <= 6.0, c4 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10406 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 > 2.0, c1 > 4.0, c2 <= 5.5, c3 <= 6.0, c4 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10410 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 > 2.0, c1 > 4.0, c2 > 5.5, c4 <= 7.0, c3 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10411 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 <= 2.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10412 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 <= 2.0, c2 > 4.0, c1 <= 5, c3 <= 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10413 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 <= 2.0, c2 > 4.0, c1 <= 5, c3 > 10.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10414 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 3, s3 == 1, c5 <= 2.0, c2 > 4.0, c1 > 5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10416 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 4, c2 > 2.0, c1 > 3.0, c3 <= 1.5, c4 <= 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10417 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 4, c2 > 2.0, c1 > 3.0, c3 <= 1.5, c4 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10418 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 4, c2 > 2.0, c1 > 3.0, c3 > 1.5, c4 <= 2.5, c5 <= 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10419 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 4, c2 > 2.0, c1 > 3.0, c3 > 1.5, c4 <= 2.5, c5 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10420 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 4, c2 > 2.0, c1 > 3.0, c3 > 1.5, c4 > 2.5, c5 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10424 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 <= 10.0, c2 > 1.0, c5 <= 5.0, c4 <= 2.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10428 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 > 10.0, c4 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10429 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 > 10.0, c4 > 4.5, c2 <= 10.0, c5 <= 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10430 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 > 10.0, c4 > 4.5, c2 <= 10.0, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10432 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 > 1.0, c1 > 10.0, c4 > 4.5, c2 > 10.0, c5 <= 5.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10433 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 3, c3 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10434 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 <= 12.0, c1 > 2.0, c5 <= 6.5, c2 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10438 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 <= 12.0, c1 > 2.0, c5 > 6.5, c2 <= 1.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10439 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 <= 12.0, c1 <= 2.0, c2 <= 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10440 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 <= 12.0, c1 <= 2.0, c2 > 10.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10441 poker_hand = 2 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 > 12.0, c1 <= 9.0, c2 <= 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (2)");
+end
+
+rule "#10442 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 > 12.0, c1 <= 9.0, c2 > 6.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10443 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 2, c3 > 12.0, c1 > 9.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10445 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 1, c2 <= 1.5, c1 > 3.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10446 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 2, s3 == 1, c2 > 1.5, c4 <= 6.5, c3 <= 11.0, c1 > 8.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10450 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 4, c2 <= 3.0, c1 <= 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10451 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 4, c2 <= 3.0, c1 > 4.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10460 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 3, c4 > 3.0, c1 > 3.0, c5 <= 8.5, c3 <= 3.5, c2 > 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10461 poker_hand = 0 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 3, c4 > 3.0, c1 > 3.0, c5 <= 8.5, c3 <= 3.5, c2 <= 6.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (0)");
+end
+
+rule "#10464 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 2, c1 <= 5.5, c2 > 9, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10466 poker_hand = 1 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 2, c1 > 5.5, c2 <= 7.5, c5 <= 11.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (1)");
+end
+
+rule "#10470 poker_hand = 8 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 1, c1 <= 11.0, c2 <= 4.0, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+end
+
+rule "#10471 poker_hand = 5 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 1, c1 <= 11.0, c2 > 4.0, c3 > 13, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (5)");
+end
+
+rule "#10472 poker_hand = 9 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 1, c1 <= 11.0, c2 > 4.0, c3 <= 13, c4 > 11.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (9)");
+end
+
+rule "#10474 poker_hand = 8 classifying 1.0 num of facts with rank:3.9984006397441024E-5" 
+	 when
+		 examples.Poker(s4 == 1, s1 == 1, s2 == 1, s5 == 1, s3 == 1, c1 <= 11.0, c2 > 4.0, c3 <= 13, c4 <= 11.5, c5 > 12.5, poker_hand : poker_hand)
+	 then 
+		 System.out.println("Decision on poker_hand = "+poker_hand +": (8)");
+end
+
+//THE END: Total number of facts correctly classified= 19967 over 25010
+//with 10476 number of rules over 10476 total number of rules 

Modified: labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/restaurants.drl
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/restaurants.drl	2008-04-02 01:29:16 UTC (rev 19372)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/restaurants.drl	2008-04-02 03:06:01 UTC (rev 19373)
@@ -49,10 +49,4 @@
 		 System.out.println("Decision on will_wait = "+will_wait +": (false)");
 end
 
-rule "#5 will_wait = false classifying 0.0 num of facts with rank:-1.0" 
-	 when
-		 examples.Restaurant(patrons == "Full", hungry == true, type == "French", will_wait : will_wait)
-	 then 
-		 System.out.println("Decision on will_wait = "+will_wait +": (false)");
-end
-
+//THE END: Total number of facts correctly classified= 11

Added: labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/zoo.drl
===================================================================
--- labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/zoo.drl	                        (rev 0)
+++ labs/jbossrules/contrib/machinelearning/dt_examples/src/rules/examples/zoo.drl	2008-04-02 03:06:01 UTC (rev 19373)
@@ -0,0 +1,74 @@
+package examples;
+
+rule "#0 type = 1 classifying 41.0 num of facts with rank:0.40594059405940597" 
+	 when
+		 examples.Zoo(milk == true, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (1)");
+end
+
+rule "#1 type = 2 classifying 20.0 num of facts with rank:0.19801980198019803" 
+	 when
+		 examples.Zoo(milk == false, feathers == true, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (2)");
+end
+
+rule "#2 type = 4 classifying 13.0 num of facts with rank:0.12871287128712872" 
+	 when
+		 examples.Zoo(milk == false, feathers == false, backbone == true, fins == true, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (4)");
+end
+
+rule "#7 type = 7 classifying 8.0 num of facts with rank:0.07920792079207921" 
+	 when
+		 examples.Zoo(milk == false, feathers == false, backbone == false, airborne == false, predator == true, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (7)");
+end
+
+rule "#6 type = 6 classifying 6.0 num of facts with rank:0.0594059405940594" 
+	 when
+		 examples.Zoo(milk == false, feathers == false, backbone == false, airborne == true, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (6)");
+end
+
+rule "#3 type = 5 classifying 4.0 num of facts with rank:0.039603960396039604" 
+	 when
+		 examples.Zoo(milk == false, feathers == false, backbone == true, fins == false, aquatic == true, breathes == true, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (5)");
+end
+
+rule "#5 type = 3 classifying 4.0 num of facts with rank:0.039603960396039604" 
+	 when
+		 examples.Zoo(milk == false, feathers == false, backbone == true, fins == false, aquatic == false, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (3)");
+end
+
+rule "#12 type = 7 classifying 2.0 num of facts with rank:0.019801980198019802" 
+	 when
+		 examples.Zoo(milk == false, feathers == false, backbone == false, airborne == false, predator == false, aquatic == false, breathes == true, domestic == false, eggs == true, fins == false, hair == false, legs <= 3.0, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (7)");
+end
+
+rule "#13 type = 6 classifying 2.0 num of facts with rank:0.019801980198019802" 
+	 when
+		 examples.Zoo(milk == false, feathers == false, backbone == false, airborne == false, predator == false, aquatic == false, breathes == true, domestic == false, eggs == true, fins == false, hair == false, legs > 3.0, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (6)");
+end
+
+rule "#4 type = 3 classifying 1.0 num of facts with rank:0.009900990099009901" 
+	 when
+		 examples.Zoo(milk == false, feathers == false, backbone == true, fins == false, aquatic == true, breathes == false, type : type)
+	 then 
+		 System.out.println("Decision on type = "+type +": (3)");
+end
+
+//THE END: Total number of facts correctly classified= 101 over 101
+//with 10 number of rules over 16 total number of rules 




More information about the jboss-svn-commits mailing list